diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2022-03-18 04:04:12 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2022-03-18 04:04:12 +0000 |
commit | 8af139b1959659573f484bd2c361b9b48effaf42 (patch) | |
tree | 21c5b4c95ba139502ba72133a6f5e297dd0dda2a /usr.bin/ssh/sshd.c | |
parent | 100414c930d91e210c30792a689eee6ef73bba80 (diff) |
don't try to resolve ListenAddress directives in the sshd re-exec
path - we're never going to use the result and if the operation fails
then it can prevent connections from being accepted. Reported by
Aaron Poffenberger; with / ok dtucker@
Diffstat (limited to 'usr.bin/ssh/sshd.c')
-rw-r--r-- | usr.bin/ssh/sshd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshd.c b/usr.bin/ssh/sshd.c index 6d8bc2aca5d..7a143d9613f 100644 --- a/usr.bin/ssh/sshd.c +++ b/usr.bin/ssh/sshd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshd.c,v 1.584 2022/03/01 01:59:19 djm Exp $ */ +/* $OpenBSD: sshd.c,v 1.585 2022/03/18 04:04:11 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -1638,7 +1638,7 @@ main(int ac, char **av) load_server_config(config_file_name, cfg); parse_server_config(&options, rexeced_flag ? "rexec" : config_file_name, - cfg, &includes, NULL); + cfg, &includes, NULL, rexeced_flag); #ifdef WITH_OPENSSL if (options.moduli_file != NULL) |