summaryrefslogtreecommitdiff
path: root/sysdeps/mach/hurd/fpathconf.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/mach/hurd/fpathconf.c')
-rw-r--r--sysdeps/mach/hurd/fpathconf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/mach/hurd/fpathconf.c b/sysdeps/mach/hurd/fpathconf.c
index 1899062741..f5e6579ee8 100644
--- a/sysdeps/mach/hurd/fpathconf.c
+++ b/sysdeps/mach/hurd/fpathconf.c
@@ -29,7 +29,7 @@ __fpathconf (int fd, int name)
error_t err;
long int value;
- if (err = HURD_DPORT_USE (fd, __file_pathconf (port, name, &value)))
+ if (err = HURD_DPORT_USE (fd, __io_pathconf (port, name, &value)))
return __hurd_dfail (fd, err), -1L;
return value;