summaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/alpha/pathconf.c
diff options
context:
space:
mode:
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;
}
}