From: Alexander Barton Date: Thu, 27 Mar 2003 01:22:44 +0000 (+0000) Subject: Synchronize server connections with server configurations after reloading the configu... X-Git-Tag: rel-0-7-0-pre1~29 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=commitdiff_plain;h=24df40eca7094eecb90eb7b988107e8c603e39a4 Synchronize server connections with server configurations after reloading the configuration. --- diff --git a/src/ngircd/ngircd.c b/src/ngircd/ngircd.c index 1166c7b7..45cdfac3 100644 --- a/src/ngircd/ngircd.c +++ b/src/ngircd/ngircd.c @@ -14,7 +14,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: ngircd.c,v 1.74 2003/03/07 14:50:13 alex Exp $"; +static char UNUSED id[] = "$Id: ngircd.c,v 1.75 2003/03/27 01:22:44 alex Exp $"; #include "imp.h" #include @@ -437,6 +437,9 @@ NGIRCd_Rehash( VOID ) /* Listen-Sockets neu anlegen: */ Conn_InitListeners( ); + /* Sync configuration with established connections */ + Conn_SyncServerStruct( ); + Log( LOG_NOTICE|LOG_snotice, "Re-reading of configuration done." ); } /* NGIRCd_Rehash */