diff options
author | 2021-02-28 01:50:47 +0000 | |
---|---|---|
committer | 2021-02-28 01:50:47 +0000 | |
commit | 0f0d13444d5dffb2df990c7f806dcfaded57df80 (patch) | |
tree | 4ca82ee98ab40732a5a32fbbfd343930f943a992 | |
parent | fix alphabetic ordering of options; spotted by Iain Morgan (diff) | |
download | wireguard-openbsd-0f0d13444d5dffb2df990c7f806dcfaded57df80.tar.xz wireguard-openbsd-0f0d13444d5dffb2df990c7f806dcfaded57df80.zip |
Do not try to reset signal handler for signal 0 in subprocess.
Prevents spurious debug message. ok djm@
-rw-r--r-- | usr.bin/ssh/misc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/misc.c b/usr.bin/ssh/misc.c index 5867641706b..88dc5f4594c 100644 --- a/usr.bin/ssh/misc.c +++ b/usr.bin/ssh/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. @@ -2503,7 +2503,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) { |