[openssh-commits] [openssh] 04/04: upstream: Remove debug message from sigchld handler. While this
git+noreply at mindrot.org
git+noreply at mindrot.org
Fri Feb 5 13:44:29 AEDT 2021
This is an automated email from the git hooks/post-receive script.
dtucker pushed a commit to branch master
in repository openssh.
commit a35d3e911e193a652bd09eed40907e3e165b0a7b
Author: dtucker at openbsd.org <dtucker at openbsd.org>
Date: Fri Feb 5 02:20:23 2021 +0000
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
---
sshd.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/sshd.c b/sshd.c
index 41afed7c..6277e6d6 100644
--- a/sshd.c
+++ b/sshd.c
@@ -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 at cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo at 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))
;
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list