diff options
author | Adhemerval Zanella Netto <adhemerval.zanella@linaro.org> | 2022-10-19 19:14:11 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-12-07 11:27:01 -0300 |
commit | 25ca6175bacb40b9704458e53ddee58865d8ab2b (patch) | |
tree | d48caceb2aaf5a65bc635063520e7996852caae2 /sysdeps/unix/sysv/linux/generic | |
parent | 842128f160a48e5545900ea3bc3ba2ce40539d11 (diff) | |
download | glibc-25ca6175bacb40b9704458e53ddee58865d8ab2b.tar glibc-25ca6175bacb40b9704458e53ddee58865d8ab2b.tar.gz glibc-25ca6175bacb40b9704458e53ddee58865d8ab2b.tar.bz2 glibc-25ca6175bacb40b9704458e53ddee58865d8ab2b.zip |
Linux: consolidate lchown implementation
Use lchown syscall if defined, otherwise use fchownat.
Checked on x86_64-linux-gnu.
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Tested-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'sysdeps/unix/sysv/linux/generic')
-rw-r--r-- | sysdeps/unix/sysv/linux/generic/lchown.c | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/sysdeps/unix/sysv/linux/generic/lchown.c b/sysdeps/unix/sysv/linux/generic/lchown.c deleted file mode 100644 index 996925d799..0000000000 --- a/sysdeps/unix/sysv/linux/generic/lchown.c +++ /dev/null @@ -1,29 +0,0 @@ -/* Copyright (C) 2011-2022 Free Software Foundation, Inc. - This file is part of the GNU C Library. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library. If not, see - <https://www.gnu.org/licenses/>. */ - -#include <unistd.h> -#include <fcntl.h> -#include <sysdep.h> - -/* Change the owner and group of FILE. */ -int -__lchown (const char *file, uid_t owner, gid_t group) -{ - return INLINE_SYSCALL (fchownat, 5, AT_FDCWD, file, owner, group, - AT_SYMLINK_NOFOLLOW); -} -weak_alias (__lchown, lchown) |