]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
upstream: Remove debug message from sigchld handler. While this
authordtucker@openbsd.org <dtucker@openbsd.org>
Fri, 5 Feb 2021 02:20:23 +0000 (02:20 +0000)
committerDarren Tucker <dtucker@dtucker.net>
Fri, 5 Feb 2021 02:38:57 +0000 (13:38 +1100)
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

diff --git a/sshd.c b/sshd.c
index 41afed7c93c0b958734f4a3b08267e7786770a3e..6277e6d6db8982e02488b05b19020bef3b6aefac 100644 (file)
--- 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@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))
                ;