summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2000-12-17 09:33:41 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2000-12-17 09:33:41 +0000
commit40a4efcd8b7e1f72d00055809e7694003a84a876 (patch)
treef4e3e90a2a147b0d46ca4c2b970d94a3e52fd0c3 /usr.bin
parentdac7bde8f0d13f576a7e24e3d0ec4deeb539711b (diff)
typo; from wsanchez@apple.com
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/ssh/uidswap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/uidswap.c b/usr.bin/ssh/uidswap.c
index 8e7c4797e4d..cb646726faf 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.9 2000/09/07 20:27:55 deraadt Exp $");
+RCSID("$OpenBSD: uidswap.c,v 1.10 2000/12/17 09:33:40 markus Exp $");
#include "ssh.h"
#include "uidswap.h"
@@ -49,7 +49,7 @@ temporarily_use_uid(uid_t uid)
/* Set the effective uid to the given (unprivileged) uid. */
if (seteuid(uid) == -1)
debug("seteuid %u: %.100s", (u_int) uid, strerror(errno));
-#else /* SAVED_IDS_WORK_WITH_SETUID */
+#else /* SAVED_IDS_WORK_WITH_SETEUID */
/* Propagate the privileged uid to all of our uids. */
if (setuid(geteuid()) < 0)
debug("setuid %u: %.100s", (u_int) geteuid(), strerror(errno));