1
0
mirror of https://github.com/osmarks/ngircd.git synced 2025-06-02 14:34:09 +00:00

Update info text of local server after re-reading configuration. [from HEAD]

This commit is contained in:
Alexander Barton 2006-10-03 11:01:05 +00:00
parent 032bf78ed4
commit 1f652554dd
2 changed files with 9 additions and 2 deletions

View File

@ -10,6 +10,10 @@
-- 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 $

View 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 */