summaryrefslogtreecommitdiff
path: root/serverloop.c
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2002-09-25 17:38:46 -0700
committerTim Rice <tim@multitalents.net>2002-09-25 17:38:46 -0700
commit81ed518b9b888502cc57b23c02c47634ca508748 (patch)
treec5e3572dcc8dabd07784d1686d67e560e1685a6f /serverloop.c
parent164725f40ecda144de706c94778e47dc86ae9257 (diff)
downloadopenssh-git-81ed518b9b888502cc57b23c02c47634ca508748.tar.gz
Cray fixes (bug 367) based on patch from Wendy Palm @ cray.
This does not include the deattack.c fixes.
Diffstat (limited to 'serverloop.c')
-rw-r--r--serverloop.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/serverloop.c b/serverloop.c
index 5112de68..58e20dfb 100644
--- a/serverloop.c
+++ b/serverloop.c
@@ -144,7 +144,9 @@ sigchld_handler(int sig)
int save_errno = errno;
debug("Received SIGCHLD.");
child_terminated = 1;
+#ifndef _UNICOS
mysignal(SIGCHLD, sigchld_handler);
+#endif
notify_parent();
errno = save_errno;
}