]> andersk Git - openssh.git/commitdiff
- (dtucker) [auth-pam.c] Use sigdie here too. ok djm@
authordtucker <dtucker>
Fri, 10 Aug 2007 04:32:34 +0000 (04:32 +0000)
committerdtucker <dtucker>
Fri, 10 Aug 2007 04:32:34 +0000 (04:32 +0000)
ChangeLog
auth-pam.c

index 86a5b82a7a5e675646ada0ea7f7b73a98b166911..5451a6738a8926d4b5a0e99cda51bb4594b81d5f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+20070810
+ - (dtucker) [auth-pam.c] Use sigdie here too.  ok djm@
+
 20070809
  - (dtucker) [openbsd-compat/port-aix.c] Comment typo.
  - (dtucker) [README.platform] Document the interaction between PermitRootLogin
index 35aecbdb4a70ffbb80e385e2b1c4045d7cbfd457..a07f1fe77d86e7290209ffcbf8346bf97b9786a2 100644 (file)
@@ -161,9 +161,9 @@ sshpam_sigchld_handler(int sig)
            WTERMSIG(sshpam_thread_status) == SIGTERM)
                return; /* terminated by pthread_cancel */
        if (!WIFEXITED(sshpam_thread_status))
-               fatal("PAM: authentication thread exited unexpectedly");
+               sigdie("PAM: authentication thread exited unexpectedly");
        if (WEXITSTATUS(sshpam_thread_status) != 0)
-               fatal("PAM: authentication thread exited uncleanly");
+               sigdie("PAM: authentication thread exited uncleanly");
 }
 
 /* ARGSUSED */
This page took 0.042754 seconds and 5 git commands to generate.