diff options
| author | Bruce Momjian | 2011-02-03 03:49:54 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2011-02-03 03:49:54 +0000 |
| commit | 426227850be145b52cb610455000fc005df5ce4e (patch) | |
| tree | 9c7e493343a44a331425b8d0da2cd87dded84761 /src/port/path.c | |
| parent | bffb638d16999ee7d3c8796e77dd87ac82719c7d (diff) | |
Rename function to first_path_var_separator() to clarify it works with
path variables, not directory paths.
Diffstat (limited to 'src/port/path.c')
| -rw-r--r-- | src/port/path.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/port/path.c b/src/port/path.c index 08397d5b99c..ccf801ead64 100644 --- a/src/port/path.c +++ b/src/port/path.c @@ -98,13 +98,13 @@ first_dir_separator(const char *filename) } /* - * first_path_separator + * first_path_var_separator * * Find the location of the first path separator (i.e. ':' on * Unix, ';' on Windows), return NULL if not found. */ char * -first_path_separator(const char *pathlist) +first_path_var_separator(const char *pathlist) { const char *p; |
