diff options
author | 2002-05-28 21:24:00 +0000 | |
---|---|---|
committer | 2002-05-28 21:24:00 +0000 | |
commit | 891d55c4dddf4b31875c8cdea40669a968cbe37f (patch) | |
tree | 726a1251a3ebccf4191dadba498b9af34a3e42e8 | |
parent | Repair remote printing; maxfd was not set correctly for remote connections. (diff) | |
download | wireguard-openbsd-891d55c4dddf4b31875c8cdea40669a968cbe37f.tar.xz wireguard-openbsd-891d55c4dddf4b31875c8cdea40669a968cbe37f.zip |
use correct function name in fatal()
-rw-r--r-- | usr.bin/ssh/uidswap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/uidswap.c b/usr.bin/ssh/uidswap.c index 8d8ba1e99e0..ab43cbadd20 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.21 2002/05/28 17:28:02 stevesk Exp $"); +RCSID("$OpenBSD: uidswap.c,v 1.22 2002/05/28 21:24:00 stevesk Exp $"); #include "log.h" #include "uidswap.h" @@ -109,7 +109,7 @@ void permanently_set_uid(struct passwd *pw) { if (temporarily_use_uid_effective) - fatal("restore_uid: temporarily_use_uid effective"); + fatal("permanently_set_uid: temporarily_use_uid effective"); if (setgid(pw->pw_gid) < 0) fatal("setgid %u: %.100s", (u_int)pw->pw_gid, strerror(errno)); if (setuid(pw->pw_uid) < 0) |