- (dtucker) [auth-pam.c] Use sigdie here too. ok djm@

This commit is contained in:
Darren Tucker 2007-08-10 14:32:34 +10:00
parent 7015e9667a
commit 57d4ca9681
2 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,6 @@
20070810
- (dtucker) [auth-pam.c] Use sigdie here too. ok djm@
20070809 20070809
- (dtucker) [openbsd-compat/port-aix.c] Comment typo. - (dtucker) [openbsd-compat/port-aix.c] Comment typo.
- (dtucker) [README.platform] Document the interaction between PermitRootLogin - (dtucker) [README.platform] Document the interaction between PermitRootLogin
@ -3142,4 +3145,4 @@
OpenServer 6 and add osr5bigcrypt support so when someone migrates OpenServer 6 and add osr5bigcrypt support so when someone migrates
passwords between UnixWare and OpenServer they will still work. OK dtucker@ passwords between UnixWare and OpenServer they will still work. OK dtucker@
$Id: ChangeLog,v 1.4722 2007/08/09 05:03:23 dtucker Exp $ $Id: ChangeLog,v 1.4723 2007/08/10 04:32:34 dtucker Exp $

View File

@ -161,9 +161,9 @@ sshpam_sigchld_handler(int sig)
WTERMSIG(sshpam_thread_status) == SIGTERM) WTERMSIG(sshpam_thread_status) == SIGTERM)
return; /* terminated by pthread_cancel */ return; /* terminated by pthread_cancel */
if (!WIFEXITED(sshpam_thread_status)) if (!WIFEXITED(sshpam_thread_status))
fatal("PAM: authentication thread exited unexpectedly"); sigdie("PAM: authentication thread exited unexpectedly");
if (WEXITSTATUS(sshpam_thread_status) != 0) if (WEXITSTATUS(sshpam_thread_status) != 0)
fatal("PAM: authentication thread exited uncleanly"); sigdie("PAM: authentication thread exited uncleanly");
} }
/* ARGSUSED */ /* ARGSUSED */