diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2002-06-06 22:42:04 +0200 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2002-06-06 22:42:04 +0200 |
commit | ca8943e6deefa16a3fc5c4d3b93d13b23d9dfc59 (patch) | |
tree | 9abb4939dbe74c8b29e35bc5ef25836a23140c17 /uidswap.c | |
parent | - stevesk@cvs.openbsd.org 2002/05/28 17:28:02 (diff) | |
download | openssh-ca8943e6deefa16a3fc5c4d3b93d13b23d9dfc59.tar.xz openssh-ca8943e6deefa16a3fc5c4d3b93d13b23d9dfc59.zip |
- (bal) Corrected debug() in uidswap.c to match upstream.
Diffstat (limited to '')
-rw-r--r-- | uidswap.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -145,7 +145,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) |