upstream: Do not try to reset signal handler for signal 0 in

subprocess. Prevents spurious debug message.  ok djm@

OpenBSD-Commit-ID: 7f9785e292dcf304457566ad4637effd27ad1d46
This commit is contained in:
dtucker@openbsd.org 2021-02-28 01:50:47 +00:00 committed by Darren Tucker
parent 351c5dbbd7
commit e774bac359
1 changed files with 2 additions and 2 deletions

4
misc.c
View File

@ -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) {