From 0da6b3a13def40e8fd002b9fc60f955467f6372d Mon Sep 17 00:00:00 2001 From: danieldg Date: Sun, 24 May 2009 02:53:45 +0000 Subject: OnRehash changes: split to multiple hooks to clarify use and prevent explosion of rehashes on a /REHASH * git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11388 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_chghost.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/modules/m_chghost.cpp') diff --git a/src/modules/m_chghost.cpp b/src/modules/m_chghost.cpp index 4e2725af4..e29bb1bed 100644 --- a/src/modules/m_chghost.cpp +++ b/src/modules/m_chghost.cpp @@ -87,7 +87,7 @@ class ModuleChgHost : public Module ModuleChgHost(InspIRCd* Me) : Module(Me) { - OnRehash(NULL,""); + OnRehash(NULL); mycommand = new CommandChghost(ServerInstance, hostmap); ServerInstance->AddCommand(mycommand); Implementation eventlist[] = { I_OnRehash }; @@ -95,7 +95,7 @@ class ModuleChgHost : public Module } - void OnRehash(User* user, const std::string ¶meter) + void OnRehash(User* user) { ConfigReader Conf(ServerInstance); std::string hmap = Conf.ReadValue("hostname", "charmap", 0); -- cgit v1.2.3