summaryrefslogtreecommitdiff
path: root/src/port/path.c
diff options
context:
space:
mode:
authorBruce Momjian2011-02-03 03:49:54 +0000
committerBruce Momjian2011-02-03 03:49:54 +0000
commit426227850be145b52cb610455000fc005df5ce4e (patch)
tree9c7e493343a44a331425b8d0da2cd87dded84761 /src/port/path.c
parentbffb638d16999ee7d3c8796e77dd87ac82719c7d (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.c4
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;