diff options
author | 2000-12-29 10:48:56 +0000 | |
---|---|---|
committer | 2000-12-29 10:48:56 +0000 | |
commit | 1b0a2f5eef806dc40ded00fac62196859f77ac61 (patch) | |
tree | d16f9a5792ec154e99fcc7fb369174965541a561 | |
parent | Suppress PCI bus error messages on i386. They are not fatal and are usually (diff) | |
download | wireguard-openbsd-1b0a2f5eef806dc40ded00fac62196859f77ac61.tar.xz wireguard-openbsd-1b0a2f5eef806dc40ded00fac62196859f77ac61.zip |
sync with portable openssh; stevesk@pobox.com
-rw-r--r-- | usr.bin/ssh/uidswap.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/ssh/uidswap.c b/usr.bin/ssh/uidswap.c index cb213aa9131..fb95702a9c8 100644 --- a/usr.bin/ssh/uidswap.c +++ b/usr.bin/ssh/uidswap.c @@ -12,7 +12,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: uidswap.c,v 1.11 2000/12/20 19:37:22 markus Exp $"); +RCSID("$OpenBSD: uidswap.c,v 1.12 2000/12/29 10:48:56 markus Exp $"); #include "ssh.h" #include "uidswap.h" @@ -30,10 +30,9 @@ RCSID("$OpenBSD: uidswap.c,v 1.11 2000/12/20 19:37:22 markus Exp $"); /* Lets assume that posix saved ids also work with seteuid, even though that is not part of the posix specification. */ #define SAVED_IDS_WORK_WITH_SETEUID -#endif /* _POSIX_SAVED_IDS */ - /* Saved effective uid. */ static uid_t saved_euid = 0; +#endif /* _POSIX_SAVED_IDS */ /* * Temporarily changes to the given uid. If the effective user |