diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2020-07-03 10:11:34 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2020-07-03 10:11:34 +0000 |
commit | 79b04f08e215cc31a120d6fca7e59fe42e8d8881 (patch) | |
tree | 7b8265e56a60c05b7b1db0fa7f9e60ca826121b4 /usr.bin/ssh | |
parent | 6ba09a7079e003c2bb877cd348c9c9b51c551097 (diff) |
keep ignoring HUP after fork+exec; ok djm
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/sshd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/sshd.c b/usr.bin/ssh/sshd.c index 38c573017b6..66a12857602 100644 --- a/usr.bin/ssh/sshd.c +++ b/usr.bin/ssh/sshd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshd.c,v 1.558 2020/07/03 10:10:17 markus Exp $ */ +/* $OpenBSD: sshd.c,v 1.559 2020/07/03 10:11:33 markus Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -1964,6 +1964,7 @@ main(int ac, char **av) dup2(config_s[1], REEXEC_CONFIG_PASS_FD); close(config_s[1]); + ssh_signal(SIGHUP, SIG_IGN); /* avoid reset to SIG_DFL */ execv(rexec_argv[0], rexec_argv); /* Reexec has failed, fall back and continue */ |