1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-30 06:01:21 +03:00

Rename function to first_path_var_separator() to clarify it works with

path variables, not directory paths.
This commit is contained in:
Bruce Momjian
2011-02-02 22:49:54 -05:00
parent bffb638d16
commit 426227850b
4 changed files with 5 additions and 5 deletions

View File

@@ -168,7 +168,7 @@ find_my_exec(const char *argv0, char *retpath)
else
startp = endp + 1;
endp = first_path_separator(startp);
endp = first_path_var_separator(startp);
if (!endp)
endp = startp + strlen(startp); /* point to end */