diff options
author | Florian Weimer <fweimer@redhat.com> | 2020-02-09 15:25:17 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2020-02-09 16:54:01 +0100 |
commit | 191fbd3aeb6a1117649595f0ffd709f533f29efb (patch) | |
tree | ea4c2649bff474006e7e922278a11b391262c296 | |
parent | aff7fcc5ee68faa1334ccfe8066ae3c42d927fe8 (diff) | |
download | glibc-191fbd3aeb6a1117649595f0ffd709f533f29efb.tar.gz glibc-191fbd3aeb6a1117649595f0ffd709f533f29efb.tar.xz glibc-191fbd3aeb6a1117649595f0ffd709f533f29efb.zip |
Linux: renameat2 syscall number is always available
Due to the built-in tables, __NR_renameat2 is always defined.
-rw-r--r-- | sysdeps/unix/sysv/linux/renameat2.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sysdeps/unix/sysv/linux/renameat2.c b/sysdeps/unix/sysv/linux/renameat2.c index 05304c6445..22b4178a08 100644 --- a/sysdeps/unix/sysv/linux/renameat2.c +++ b/sysdeps/unix/sysv/linux/renameat2.c @@ -29,15 +29,14 @@ __renameat2 (int oldfd, const char *old, int newfd, const char *new, #else if (flags == 0) return __renameat (oldfd, old, newfd, new); -# ifdef __NR_renameat2 + /* For non-zero flags, try the renameat2 system call. */ int ret = INLINE_SYSCALL_CALL (renameat2, oldfd, old, newfd, new, flags); if (ret != -1 || errno != ENOSYS) /* Preserve non-error/non-ENOSYS return values. */ return ret; -# endif - /* No kernel (header) support for renameat2. All flags are - unknown. */ + + /* No kernel support for renameat2. All flags are unknown. */ __set_errno (EINVAL); return -1; #endif |