- (bal) Corrected debug() in uidswap.c to match upstream.
This commit is contained in:
parent
abff1dd050
commit
ca8943e6de
|
@ -45,6 +45,8 @@
|
||||||
[uidswap.c]
|
[uidswap.c]
|
||||||
format spec change/casts and some KNF; ok markus@
|
format spec change/casts and some KNF; ok markus@
|
||||||
|
|
||||||
|
- (bal) Corrected debug() in uidswap.c to match upstream.
|
||||||
|
|
||||||
20020604
|
20020604
|
||||||
- (stevesk) [channels.c] bug #164 patch from YOSHIFUJI Hideaki (changed
|
- (stevesk) [channels.c] bug #164 patch from YOSHIFUJI Hideaki (changed
|
||||||
setsockopt from debug to error for now).
|
setsockopt from debug to error for now).
|
||||||
|
@ -728,4 +730,4 @@
|
||||||
- (stevesk) entropy.c: typo in debug message
|
- (stevesk) entropy.c: typo in debug message
|
||||||
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
- (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 $
|
||||||
|
|
|
@ -145,7 +145,7 @@ void
|
||||||
permanently_set_uid(struct passwd *pw)
|
permanently_set_uid(struct passwd *pw)
|
||||||
{
|
{
|
||||||
if (temporarily_use_uid_effective)
|
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)
|
if (setgid(pw->pw_gid) < 0)
|
||||||
fatal("setgid %u: %.100s", (u_int)pw->pw_gid, strerror(errno));
|
fatal("setgid %u: %.100s", (u_int)pw->pw_gid, strerror(errno));
|
||||||
if (setuid(pw->pw_uid) < 0)
|
if (setuid(pw->pw_uid) < 0)
|
||||||
|
|
Loading…
Reference in New Issue