summaryrefslogtreecommitdiff
path: root/serverloop.c
diff options
context:
space:
mode:
Diffstat (limited to 'serverloop.c')
-rw-r--r--serverloop.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/serverloop.c b/serverloop.c
index 9d789a213..e9bd9b5e5 100644
--- a/serverloop.c
+++ b/serverloop.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: serverloop.c,v 1.203 2018/01/23 05:27:21 djm Exp $ */ 1/* $OpenBSD: serverloop.c,v 1.204 2018/02/11 21:16:56 dtucker Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -153,9 +153,6 @@ sigchld_handler(int sig)
153{ 153{
154 int save_errno = errno; 154 int save_errno = errno;
155 child_terminated = 1; 155 child_terminated = 1;
156#ifndef _UNICOS
157 mysignal(SIGCHLD, sigchld_handler);
158#endif
159 notify_parent(); 156 notify_parent();
160 errno = save_errno; 157 errno = save_errno;
161} 158}