summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2004-06-30 22:40:47 +0000
committerJim Meyering <jim@meyering.net>2004-06-30 22:40:47 +0000
commit6e7b53a45ec855938ae3395ce9337c9ac155f8fb (patch)
tree3b2f222088e095ba671831aec432dd708b868a2b /lib
parent1a9ba9e7743921dcd04d7b08ca64b27124028d32 (diff)
downloadcoreutils-6e7b53a45ec855938ae3395ce9337c9ac155f8fb.tar.xz
(FILE_SYSTEM_PREFIX_LEN): Renamed from
FILESYSTEM_PREFIX_LEN. All uses changed.
Diffstat (limited to 'lib')
-rw-r--r--lib/path-concat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/path-concat.c b/lib/path-concat.c
index db96debad..4f62631d1 100644
--- a/lib/path-concat.c
+++ b/lib/path-concat.c
@@ -81,7 +81,7 @@ path_concat (const char *dir, const char *base, char **base_in_result)
p = mempcpy (p_concat, dir, dirlen);
- if (FILESYSTEM_PREFIX_LEN (dir) < dirlen)
+ if (FILE_SYSTEM_PREFIX_LEN (dir) < dirlen)
{
if (ISSLASH (*(p - 1)) && ISSLASH (*base))
--p;