summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/syscalls.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/sysdeps/linux/common/syscalls.c')
-rw-r--r--libc/sysdeps/linux/common/syscalls.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libc/sysdeps/linux/common/syscalls.c b/libc/sysdeps/linux/common/syscalls.c
index ce1bffe26..318bbfbb3 100644
--- a/libc/sysdeps/linux/common/syscalls.c
+++ b/libc/sysdeps/linux/common/syscalls.c
@@ -985,7 +985,7 @@ int __xstat(int version, const char * file_name, struct libc_stat * cstat)
int result = __stat(file_name, &kstat);
if (result == 0) {
- statfix(cstat, &kstat);
+ __statfix(cstat, &kstat);
}
return result;
}
@@ -1014,7 +1014,7 @@ int __lxstat(int version, const char * file_name, struct libc_stat * cstat)
int result = __lstat(file_name, &kstat);
if (result == 0) {
- statfix(cstat, &kstat);
+ __statfix(cstat, &kstat);
}
return result;
}
@@ -1043,7 +1043,7 @@ int __fxstat(int version, int fd, struct libc_stat * cstat)
int result = __fstat(fd, &kstat);
if (result == 0) {
- statfix(cstat, &kstat);
+ __statfix(cstat, &kstat);
}
return result;
}
@@ -1706,7 +1706,7 @@ int __xstat64(int version, const char * file_name, struct libc_stat64 * cstat)
int result = __stat64(file_name, &kstat);
if (result == 0) {
- statfix64(cstat, &kstat);
+ __statfix64(cstat, &kstat);
}
return result;
}
@@ -1733,7 +1733,7 @@ int __lxstat64(int version, const char * file_name, struct libc_stat64 * cstat)
int result = __lstat64(file_name, &kstat);
if (result == 0) {
- statfix64(cstat, &kstat);
+ __statfix64(cstat, &kstat);
}
return result;
}
@@ -1760,7 +1760,7 @@ int __fxstat64(int version, int fd, struct libc_stat64 * cstat)
int result = __fstat64(fd, &kstat);
if (result == 0) {
- statfix64(cstat, &kstat);
+ __statfix64(cstat, &kstat);
}
return result;
}