about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/alpha/pathconf.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-06-18 05:22:55 +0000
committerUlrich Drepper <drepper@redhat.com>2000-06-18 05:22:55 +0000
commit89ffa8a88378b50a4fa9ad4084a4de3ef431777d (patch)
tree3d1956a54d07eef6a60fcafe7d11de13ff5493a8 /sysdeps/unix/sysv/linux/alpha/pathconf.c
parenta9c464ab1b027f8b4308e3b4a03d44fdaabf9609 (diff)
downloadglibc-89ffa8a88378b50a4fa9ad4084a4de3ef431777d.tar.gz
glibc-89ffa8a88378b50a4fa9ad4084a4de3ef431777d.tar.xz
glibc-89ffa8a88378b50a4fa9ad4084a4de3ef431777d.zip
Update.
	* sysdeps/unix/sysv/linux/alpha/fpathconf.c: Define and use
	LINUX_LINK_MAX.
	* sysdeps/unix/sysv/linux/alpha/pathconf.c: Likewise.
Diffstat (limited to 'sysdeps/unix/sysv/linux/alpha/pathconf.c')
-rw-r--r--sysdeps/unix/sysv/linux/alpha/pathconf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/alpha/pathconf.c b/sysdeps/unix/sysv/linux/alpha/pathconf.c
index df5d72ab5e..be5e938783 100644
--- a/sysdeps/unix/sysv/linux/alpha/pathconf.c
+++ b/sysdeps/unix/sysv/linux/alpha/pathconf.c
@@ -57,7 +57,7 @@ __pathconf (const char *path, int 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)
 	{
@@ -87,7 +87,7 @@ __pathconf (const char *path, int name)
 	  return UFS_LINK_MAX;
 
 	default:
-	  return LINK_MAX;
+	  return LINUX_LINK_MAX;
 	}
     }