diff options
author | dtucker@openbsd.org <dtucker@openbsd.org> | 2021-02-05 03:20:23 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2021-02-05 03:38:57 +0100 |
commit | a35d3e911e193a652bd09eed40907e3e165b0a7b (patch) | |
tree | e5b4f1cffb34fcd8ab2fa9e11ce1938bf3cdd99c /sshd.c | |
parent | upstream: whitespace (diff) | |
download | openssh-a35d3e911e193a652bd09eed40907e3e165b0a7b.tar.xz openssh-a35d3e911e193a652bd09eed40907e3e165b0a7b.zip |
upstream: Remove debug message from sigchld handler. While this
works on OpenBSD it can cause problems on other platforms. From kircherlike
at outlook.com via bz#3259, ok djm@
OpenBSD-Commit-ID: 3e241d7ac1ee77e3de3651780b5dc47b283a7668
Diffstat (limited to 'sshd.c')
-rw-r--r-- | sshd.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: sshd.c,v 1.569 2021/01/27 10:05:28 djm Exp $ */ +/* $OpenBSD: sshd.c,v 1.570 2021/02/05 02:20:23 dtucker Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -340,8 +340,6 @@ main_sigchld_handler(int sig) pid_t pid; int status; - debug("main_sigchld_handler: %s", strsignal(sig)); - while ((pid = waitpid(-1, &status, WNOHANG)) > 0 || (pid == -1 && errno == EINTR)) ; |