summaryrefslogtreecommitdiff
path: root/ssh.c
diff options
context:
space:
mode:
Diffstat (limited to 'ssh.c')
-rw-r--r--ssh.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/ssh.c b/ssh.c
index af4597f88..c0bdd38bc 100644
--- a/ssh.c
+++ b/ssh.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh.c,v 1.471 2018/01/23 05:27:21 djm Exp $ */ 1/* $OpenBSD: ssh.c,v 1.472 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
@@ -2132,7 +2132,5 @@ main_sigchld_handler(int sig)
2132 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 || 2132 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
2133 (pid < 0 && errno == EINTR)) 2133 (pid < 0 && errno == EINTR))
2134 ; 2134 ;
2135
2136 signal(sig, main_sigchld_handler);
2137 errno = save_errno; 2135 errno = save_errno;
2138} 2136}