mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-16 18:10:11 +00:00
Document new tristate __libc_missing_32bit_uids.
Use 32bit uid syscall if __libc_missing_32bit_uids is -1 or 0.
This commit is contained in:
parent
78a718de6f
commit
886523a9ba
@ -45,7 +45,7 @@ __chown (const char *file, uid_t owner, gid_t group)
|
||||
return INLINE_SYSCALL (chown32, 3, file, owner, group);
|
||||
#else
|
||||
# ifdef __NR_chown32
|
||||
if (!__libc_missing_32bit_uids)
|
||||
if (__libc_missing_32bit_uids <= 0)
|
||||
{
|
||||
int result;
|
||||
int saved_errno = errno;
|
||||
|
Loading…
Reference in New Issue
Block a user