- (djm) [sshd.c] Use kill(0, ...) instead of killpg(0, ...); the
   latter being specified to have undefined behaviour in SUSv3;
   ok dtucker
diff --git a/sshd.c b/sshd.c
index a5d4218..25380c9 100644
--- a/sshd.c
+++ b/sshd.c
@@ -372,7 +372,7 @@
 	 */
 	if (getpgid(0) == getpid()) {
 		signal(SIGTERM, SIG_IGN);
-		killpg(0, SIGTERM);
+		kill(0, SIGTERM);
 	}
 
 	/* Log error and exit. */