diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-05-24 02:53:45 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-05-24 02:53:45 +0000 |
commit | 0da6b3a13def40e8fd002b9fc60f955467f6372d (patch) | |
tree | d4aa39ece30255afe7447fb46f39c45c39d679a3 /src/modules/m_ident.cpp | |
parent | 5f309503fa985faa5b255246fc0415455c1c65ee (diff) |
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
Diffstat (limited to 'src/modules/m_ident.cpp')
-rw-r--r-- | src/modules/m_ident.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_ident.cpp b/src/modules/m_ident.cpp index 6db584753..24e27d560 100644 --- a/src/modules/m_ident.cpp +++ b/src/modules/m_ident.cpp @@ -323,7 +323,7 @@ class ModuleIdent : public Module ModuleIdent(InspIRCd *Me) : Module(Me) { Conf = new ConfigReader(ServerInstance); - OnRehash(NULL, ""); + OnRehash(NULL); Implementation eventlist[] = { I_OnRehash, I_OnUserRegister, I_OnCheckReady, I_OnCleanup, I_OnUserDisconnect }; ServerInstance->Modules->Attach(eventlist, this, 5); } @@ -338,7 +338,7 @@ class ModuleIdent : public Module return Version("$Id$", VF_VENDOR, API_VERSION); } - virtual void OnRehash(User *user, const std::string ¶m) + virtual void OnRehash(User *user) { delete Conf; Conf = new ConfigReader(ServerInstance); |