- (dtucker) [auth-pam.c] Use sigdie here too.  ok djm@
diff --git a/auth-pam.c b/auth-pam.c
index 35aecbd..a07f1fe 100644
--- a/auth-pam.c
+++ b/auth-pam.c
@@ -161,9 +161,9 @@
 	    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 */