summaryrefslogtreecommitdiffstats
path: root/lib/libc/sys/open.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/sys/open.c')
-rw-r--r--lib/libc/sys/open.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/sys/open.c b/lib/libc/sys/open.c
index 57c0324..e0273c6 100644
--- a/lib/libc/sys/open.c
+++ b/lib/libc/sys/open.c
@@ -54,6 +54,6 @@ open(const char *path, int flags, ...)
} else {
mode = 0;
}
- return (((int (*)(const char *, int, ...))
- __libc_interposing[INTERPOS_open])(path, flags, mode));
+ return (((int (*)(int, const char *, int, ...))
+ __libc_interposing[INTERPOS_openat])(AT_FDCWD, path, flags, mode));
}
OpenPOWER on IntegriCloud