From 76f01453dfa157b0070751b1025e55a1e36ebdca Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Wed, 20 Feb 2002 16:04:07 +0000 Subject: [PATCH] Fix segfault when receiving HUP signal. --- src/net.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/net.c b/src/net.c index bf58cf00..e42ccf4a 100644 --- a/src/net.c +++ b/src/net.c @@ -17,7 +17,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: net.c,v 1.35.4.156 2002/02/18 16:25:16 guus Exp $ + $Id: net.c,v 1.35.4.157 2002/02/20 16:04:07 guus Exp $ */ #include "config.h" @@ -431,19 +431,21 @@ cp if(sighup) { - syslog(LOG_INFO, _("Rereading configuration file and restarting in 5 seconds")); sighup = 0; close_network_connections(); exit_configuration(&config_tree); + syslog(LOG_INFO, _("Rereading configuration file and restarting in 5 seconds")); + sleep(5); + + init_configuration(&config_tree); + if(read_server_config()) { syslog(LOG_ERR, _("Unable to reread configuration file, exiting")); exit(1); } - sleep(5); - if(setup_network_connections()) return; -- 2.20.1