diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-06-10 02:32:35 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-06-10 02:32:35 +0000 |
commit | 54c924656eb5f55b7a6e95bf6c31b6f3bc1e09dc (patch) | |
tree | 5a89bd611c98acce66bf0ec7e101eb0873623d7c /sysdeps/unix/sysv/linux/sparc | |
parent | 5b318f8556255638907de5251e3df225a6cfcdff (diff) | |
download | glibc-54c924656eb5f55b7a6e95bf6c31b6f3bc1e09dc.tar glibc-54c924656eb5f55b7a6e95bf6c31b6f3bc1e09dc.tar.gz glibc-54c924656eb5f55b7a6e95bf6c31b6f3bc1e09dc.tar.bz2 glibc-54c924656eb5f55b7a6e95bf6c31b6f3bc1e09dc.zip |
Update.
2003-06-09 Jakub Jelinek <jakub@redhat.com>
* sysdeps/unix/sysv/linux/kernel-features.h
(__ASSUME_SETRESGID_SYSCALL): Define.
* sysdeps/unix/sysv/linux/setegid.c: Use __ASSUME_SETRESGID_SYSCALL
instead of __ASSUME_SETRESUID_SYSCALL.
(setegid): Only use setresgid32 inline syscall if __NR_setresgid32 is
defined.
* sysdeps/unix/sysv/linux/seteuid.c (seteuid): Only use setresgid32
inline syscall if __NR_setresuid32 is defined.
* sysdeps/unix/sysv/linux/i386/setegid.c (setegid): Use
__ASSUME_SETRESGID_SYSCALL instead of __ASSUME_SETRESUID_SYSCALL.
* sysdeps/unix/sysv/linux/i386/setregid.c: Backout last changes.
* sysdeps/unix/sysv/linux/i386/setreuid.c: Likewise.
* sysdeps/unix/sysv/linux/sparc/sparc32/setegid.c (setegid): Protect
code handling non-existant setresgid32 syscall with
#if __ASSUME_SETRESGID_SYSCALL == 0.
2003-06-09 Andreas Schwab <schwab@suse.de>
* sunrpc/Makefile (generated): Remove rpc-proto.c, rpc-proto.d.
($(rpcsvc:%.x=$(objpfx)x%$o)): Don't depend on
$(objpfx)rpc-proto.d.
(rpcsvc-dt-files, rpcsvc-depfiles): Define. Include
$(rpcsvc-depfiles) instead of $(objpfx)rpc-proto.d.
($(objpfx)rpc-proto.d, $(objpfx)rpc-proto.c): Remove rules.
Diffstat (limited to 'sysdeps/unix/sysv/linux/sparc')
-rw-r--r-- | sysdeps/unix/sysv/linux/sparc/sparc32/setegid.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/setegid.c b/sysdeps/unix/sysv/linux/sparc/sparc32/setegid.c index 11643f6d39..96f807484d 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc32/setegid.c +++ b/sysdeps/unix/sysv/linux/sparc/sparc32/setegid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1998, 2000, 2003 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 @@ -38,11 +38,13 @@ setegid (gid_t gid) /* First try the syscall. */ result = __setresgid (-1, gid, -1); +# 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 equal to the real group ID, making it impossible to switch back. */ result = __setregid (-1, gid); +# endif return result; } |