about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/pathconf.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-06-08 10:05:46 +0000
committerUlrich Drepper <drepper@redhat.com>2000-06-08 10:05:46 +0000
commitde1a717765d50ae5339a9ff0c004eefab9ecf2b1 (patch)
treed3df4a84e6ad013c69f6bfdb827b1d8ff8260d1a /sysdeps/unix/sysv/linux/pathconf.c
parent9e56352f882e634fde43c7bf4a76090f51cd7c59 (diff)
downloadglibc-de1a717765d50ae5339a9ff0c004eefab9ecf2b1.tar.gz
glibc-de1a717765d50ae5339a9ff0c004eefab9ecf2b1.tar.xz
glibc-de1a717765d50ae5339a9ff0c004eefab9ecf2b1.zip
Update.
	* sysdeps/unix/sysv/linux/fpathconf.c: Likewise.
Diffstat (limited to 'sysdeps/unix/sysv/linux/pathconf.c')
-rw-r--r--sysdeps/unix/sysv/linux/pathconf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/pathconf.c b/sysdeps/unix/sysv/linux/pathconf.c
index 98b69c0cd6..6e7cdabfad 100644
--- a/sysdeps/unix/sysv/linux/pathconf.c
+++ b/sysdeps/unix/sysv/linux/pathconf.c
@@ -43,7 +43,7 @@ __pathconf (path, name)
       /* Determine the filesystem type.  */
       if (__statfs (path, &fsbuf) < 0)
 	/* not possible, return the default value.  */
-	return LINK_MAX;
+	return LINUX_LINK_MAX;
 
       switch (fsbuf.f_type)
 	{