summaryrefslogtreecommitdiff
path: root/sysdeps/mach
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/mach')
-rw-r--r--sysdeps/mach/hurd/ftok.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/mach/hurd/ftok.c b/sysdeps/mach/hurd/ftok.c
index ddd69b0dac..c2ea75f02d 100644
--- a/sysdeps/mach/hurd/ftok.c
+++ b/sysdeps/mach/hurd/ftok.c
@@ -31,7 +31,7 @@ ftok (const char *pathname, int proj_id)
struct stat64 st;
key_t key;
- if (__xstat64 (_STAT_VER, pathname, &st) < 0)
+ if (__stat64 (pathname, &st) < 0)
return (key_t) -1;
key = ((st.st_dev & 0xff) | ((proj_id & 0xff) << 8)