[openssh-commits] [openssh] 01/01: upstream: Do not try to reset signal handler for signal 0 in

git+noreply at mindrot.org git+noreply at mindrot.org
Sun Feb 28 13:01:33 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 e774bac35933e71f924f4301786e7fb5bbe1422f
Author: dtucker at openbsd.org <dtucker at openbsd.org>
Date:   Sun Feb 28 01:50:47 2021 +0000

    upstream: Do not try to reset signal handler for signal 0 in
    
    subprocess. Prevents spurious debug message.  ok djm@
    
    OpenBSD-Commit-ID: 7f9785e292dcf304457566ad4637effd27ad1d46
---
 misc.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/misc.c b/misc.c
index f333e1ab..d988ce3b 100644
--- a/misc.c
+++ b/misc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: misc.c,v 1.161 2021/02/15 20:36:35 markus Exp $ */
+/* $OpenBSD: misc.c,v 1.162 2021/02/28 01:50:47 dtucker Exp $ */
 /*
  * Copyright (c) 2000 Markus Friedl.  All rights reserved.
  * Copyright (c) 2005-2020 Damien Miller.  All rights reserved.
@@ -2604,7 +2604,7 @@ subprocess(const char *tag, const char *command,
 				child_set_env(&env, &nenv, "LANG", cp);
 		}
 
-		for (i = 0; i < NSIG; i++)
+		for (i = 1; i < NSIG; i++)
 			ssh_signal(i, SIG_DFL);
 
 		if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {

-- 
To stop receiving notification emails like this one, please contact
djm at mindrot.org.


More information about the openssh-commits mailing list