about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2006-10-03 10:59:40 +0000
committerAlexander Barton <alex@barton.de>2006-10-03 10:59:40 +0000
commit4e02bdc322cfffc8d0862c967919054eb6f14c60 (patch)
tree59fead774a7cc6155f9bdc8350df2a900b0fac87 /src
parentca5e09865e2f6155ee4eb6551364250734b620ed (diff)
downloadngircd-4e02bdc322cfffc8d0862c967919054eb6f14c60.tar.gz
ngircd-4e02bdc322cfffc8d0862c967919054eb6f14c60.zip
Update info text of local server after re-reading configuration.
Diffstat (limited to 'src')
-rw-r--r--src/ngircd/conf.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ngircd/conf.c b/src/ngircd/conf.c
index f6076a57..34292a52 100644
--- a/src/ngircd/conf.c
+++ b/src/ngircd/conf.c
@@ -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.93 2006/10/03 10:59:41 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 */