diff options
author | Guo Ren <ren_guo@c-sky.com> | 2018-09-13 13:34:12 +0800 |
---|---|---|
committer | Waldemar Brodkorb <wbrodkorb@conet.de> | 2018-09-21 03:42:11 +0200 |
commit | e550b5c085654f3310e378821d73bccce11fa172 (patch) | |
tree | 822380b0d1465edc4189d09b1ccb4e2c5672eaba /libc | |
parent | f664078e0fcd5988ef0acc124b1f52d2ce7be03c (diff) |
bugfix renameat2 wrong implement.
Signed-off-by: Guo Ren <ren_guo@c-sky.com>
Diffstat (limited to 'libc')
-rw-r--r-- | libc/sysdeps/linux/common/rename.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/rename.c b/libc/sysdeps/linux/common/rename.c index 30a4ed75f..613ae4e44 100644 --- a/libc/sysdeps/linux/common/rename.c +++ b/libc/sysdeps/linux/common/rename.c @@ -20,7 +20,9 @@ int rename(const char *oldpath, const char *newpath) # include <fcntl.h> int rename(const char *oldpath, const char *newpath) { - _syscall2(int, renameat2, const char *, oldpath, const char *, newpath) + _syscall5(int, renameat2, int, olddfd, const char *, oldpath, + int, newdfd, const char *, newpath, int, flags) + return renameat2(AT_FDCWD, oldpath, AT_FDCWD, newpath, 0); } #else _syscall2(int, rename, const char *, oldpath, const char *, newpath) |