diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/setegid.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/setegid.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/linux/setegid.c b/sysdeps/unix/sysv/linux/setegid.c index 6643a9da79..34e64a3dee 100644 --- a/sysdeps/unix/sysv/linux/setegid.c +++ b/sysdeps/unix/sysv/linux/setegid.c @@ -24,7 +24,7 @@ #include <sysdep.h> #include "kernel-features.h" -#if defined __NR_setresgid || __ASSUME_SETRESUID_SYSCALL > 0 +#if defined __NR_setresgid || __ASSUME_SETRESGID_SYSCALL > 0 extern int __setresgid (gid_t rgid, gid_t egid, gid_t sgid); @@ -39,12 +39,12 @@ setegid (gid_t gid) return -1; } -# if __ASSUME_32BITUIDS > 0 +# if __ASSUME_32BITUIDS > 0 && defined __NR_setresgid32 return INLINE_SYSCALL (setresgid32, 3, -1, gid, -1); # else /* First try the syscall. */ result = __setresgid (-1, gid, -1); -# if __ASSUME_SETRESUID_SYSCALL == 0 +# if __ASSUME_SETRESGID_SYSCALL == 0 if (result == -1 && errno == ENOSYS) /* No system call available. Use emulation. This may not work since `setregid' also sets the saved group ID when GID is not |