- (bal) Corrected debug() in uidswap.c to match upstream.

This commit is contained in:
Ben Lindstrom 2002-06-06 20:42:04 +00:00
parent abff1dd050
commit ca8943e6de
2 changed files with 4 additions and 2 deletions

View File

@ -45,6 +45,8 @@
[uidswap.c]
format spec change/casts and some KNF; ok markus@
- (bal) Corrected debug() in uidswap.c to match upstream.
20020604
- (stevesk) [channels.c] bug #164 patch from YOSHIFUJI Hideaki (changed
setsockopt from debug to error for now).
@ -728,4 +730,4 @@
- (stevesk) entropy.c: typo in debug message
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
$Id: ChangeLog,v 1.2156 2002/06/06 20:38:49 mouring Exp $
$Id: ChangeLog,v 1.2157 2002/06/06 20:42:04 mouring Exp $

View File

@ -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)