]> andersk Git - openssh.git/commitdiff
- (bal) Corrected debug() in uidswap.c to match upstream.
authormouring <mouring>
Thu, 6 Jun 2002 20:42:04 +0000 (20:42 +0000)
committermouring <mouring>
Thu, 6 Jun 2002 20:42:04 +0000 (20:42 +0000)
ChangeLog
uidswap.c

index d11de36e482d8511009206ec0a1361f486ec12bf..e16d516ba800bb2950073cbe14b5048895d53204 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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).
index af7e86e844f5331dac749bee2bbf3f7bb075ea68..b35cb5b849c044a92c2039d6f99a6a4fe33866b9 100644 (file)
--- a/uidswap.c
+++ b/uidswap.c
@@ -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)
This page took 0.041829 seconds and 5 git commands to generate.