File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -610,7 +610,7 @@ find_in_dynamic_libpath(const char *basename)
610
610
char * mangled ;
611
611
char * full ;
612
612
613
- piece = first_path_separator (p );
613
+ piece = first_path_var_separator (p );
614
614
if (piece == p )
615
615
ereport (ERROR ,
616
616
(errcode (ERRCODE_INVALID_NAME ),
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ extern bool pg_set_block(pgsocket sock);
36
36
37
37
extern char * first_dir_separator (const char * filename );
38
38
extern char * last_dir_separator (const char * filename );
39
- extern char * first_path_separator (const char * pathlist );
39
+ extern char * first_path_var_separator (const char * pathlist );
40
40
extern void join_path_components (char * ret_path ,
41
41
const char * head , const char * tail );
42
42
extern void canonicalize_path (char * path );
Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ find_my_exec(const char *argv0, char *retpath)
168
168
else
169
169
startp = endp + 1 ;
170
170
171
- endp = first_path_separator (startp );
171
+ endp = first_path_var_separator (startp );
172
172
if (!endp )
173
173
endp = startp + strlen (startp ); /* point to end */
174
174
Original file line number Diff line number Diff line change @@ -98,13 +98,13 @@ first_dir_separator(const char *filename)
98
98
}
99
99
100
100
/*
101
- * first_path_separator
101
+ * first_path_var_separator
102
102
*
103
103
* Find the location of the first path separator (i.e. ':' on
104
104
* Unix, ';' on Windows), return NULL if not found.
105
105
*/
106
106
char *
107
- first_path_separator (const char * pathlist )
107
+ first_path_var_separator (const char * pathlist )
108
108
{
109
109
const char * p ;
110
110
You can’t perform that action at this time.
0 commit comments