aboutsummaryrefslogtreecommitdiffstats
path: root/pseudo_client.h
diff options
context:
space:
mode:
Diffstat (limited to 'pseudo_client.h')
-rw-r--r--pseudo_client.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/pseudo_client.h b/pseudo_client.h
index 80880b4..f36a772 100644
--- a/pseudo_client.h
+++ b/pseudo_client.h
@@ -19,14 +19,14 @@
*/
extern pseudo_msg_t *pseudo_client_op(pseudo_op_t op, int access, int fd, int dirfd, const char *path, const PSEUDO_STATBUF *buf, ...);
#if PSEUDO_STATBUF_64
-#define base_lstat lstat64
-#define base_fstat fstat64
-#define base_stat stat64
+#define base_lstat real_lstat64
+#define base_fstat real_fstat64
+#define base_stat real_stat64
#define base_fstatat(dirfd, path, buf, flags) real___fxstatat64(_STAT_VER, dirfd, path, buf, flags)
#else
-#define base_lstat lstat
-#define base_fstat fstat
-#define base_stat stat
+#define base_lstat real_lstat
+#define base_fstat real_fstat
+#define base_stat real_stat
#define base_fstatat(dirfd, path, buf, flags) real___fxstatat(_STAT_VER, dirfd, path, buf, flags)
#endif
extern void pseudo_antimagic(void);