]> arthur.barton.de Git - ngircd.git/commitdiff
Update info text of local server after re-reading configuration. [from HEAD]
authorAlexander Barton <alex@barton.de>
Tue, 3 Oct 2006 11:01:05 +0000 (11:01 +0000)
committerAlexander Barton <alex@barton.de>
Tue, 3 Oct 2006 11:01:05 +0000 (11:01 +0000)
ChangeLog
src/ngircd/conf.c

index 1314a5bb3290fe81091a079d9cc02e829f59dd61..d9d6271cad43bf8bd9a7832941dedcb8e5c29656 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
                                -- ChangeLog --
 
 
+ngIRCd 0.10.x
+
+  - Update info text of local server after re-reading configuration.
+
 ngIRCd 0.10.0 (2006-10-01)
 
   - Fixed file handle leak when daemon is not able to send MOTD to a client.
@@ -661,4 +665,4 @@ ngIRCd 0.0.1, 31.12.2001
 
 
 -- 
-$Id: ChangeLog,v 1.302.2.4 2006/10/01 16:21:55 alex Exp $
+$Id: ChangeLog,v 1.302.2.5 2006/10/03 11:01:05 alex Exp $
index f6076a574bd1dcb4105e69a6c69eaf159196b9f6..c025dc2a6a78dcf607baa70b03b4f4e34075a914 100644 (file)
@@ -14,7 +14,7 @@
 
 #include "portab.h"
 
-static char UNUSED id[] = "$Id: conf.c,v 1.92 2006/07/23 16:42:45 alex Exp $";
+static char UNUSED id[] = "$Id: conf.c,v 1.92.2.1 2006/10/03 11:01:06 alex Exp $";
 
 #include "imp.h"
 #include <assert.h>
@@ -146,6 +146,9 @@ Conf_Rehash( void )
        Set_Defaults( false );
        Read_Config( );
        Validate_Config(false, true);
+       
+       /* Update CLIENT structure of local server */
+       Client_SetInfo(Client_ThisServer(), Conf_ServerInfo);
 } /* Config_Rehash */