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:
Ulrich Drepper 2000-02-11 19:42:16 +00:00
parent 78a718de6f
commit 886523a9ba

View File

@ -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;