1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
* sysdeps/unix/sysv/linux/fpathconf.c: Likewise.
This commit is contained in:
Ulrich Drepper
2000-06-08 10:05:46 +00:00
parent 9e56352f88
commit de1a717765
3 changed files with 9 additions and 4 deletions

View File

@ -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)
{