From 0378cffafc259c7b9bf46314d30dd622e0f1261d Mon Sep 17 00:00:00 2001 From: Matt Johnston Date: Mon, 30 Aug 2004 13:26:42 +0000 Subject: [PATCH] Load the hostkeys for inetd too - oops --HG-- extra : convert_revision : 815f75b9a450396fd5a9cca286803a91f0edc1a9 --- svr-main.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/svr-main.c b/svr-main.c index 7dc3722..ae05c0d 100644 --- a/svr-main.c +++ b/svr-main.c @@ -138,9 +138,6 @@ void main_noinetd() { commonsetup(); - /* Now we can setup the hostkeys - needs to be after logging is on, - * otherwise we might end up blatting error messages to the socket */ - loadhostkeys(); /* should be done after syslog is working */ if (svr_opts.forkbg) { @@ -355,6 +352,10 @@ static void commonsetup() { if (signal(SIGSEGV, sigsegv_handler) == SIG_ERR) { dropbear_exit("signal() error"); } + + /* Now we can setup the hostkeys - needs to be after logging is on, + * otherwise we might end up blatting error messages to the socket */ + loadhostkeys(); } /* Set up listening sockets for all the requested ports */