X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_securelist.cpp;h=6c3114860fab1688dd559e3ff5579003eed9484c;hb=819147178db00008a215670992d0f532dd57f9e5;hp=1b0424ddba8029830f115900f51a3351d6b62053;hpb=27e0df3719ce1d6153f8f332d23631044b3c9a79;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_securelist.cpp b/src/modules/m_securelist.cpp index 1b0424ddb..6c3114860 100644 --- a/src/modules/m_securelist.cpp +++ b/src/modules/m_securelist.cpp @@ -3,7 +3,7 @@ * +------------------------------------+ * * InspIRCd: (C) 2002-2009 InspIRCd Development Team - * See: http://www.inspircd.org/wiki/index.php/Credits + * See: http://wiki.inspircd.org/Credits * * This program is free but copyrighted software; see * the file COPYING for details. @@ -23,7 +23,7 @@ class ModuleSecureList : public Module public: ModuleSecureList(InspIRCd* Me) : Module(Me) { - OnRehash(NULL,""); + OnRehash(NULL); Implementation eventlist[] = { I_OnRehash, I_OnPreCommand, I_On005Numeric }; ServerInstance->Modules->Attach(eventlist, this, 3); } @@ -37,7 +37,7 @@ class ModuleSecureList : public Module return Version("$Id$",VF_VENDOR,API_VERSION); } - void OnRehash(User* user, const std::string ¶meter) + void OnRehash(User* user) { ConfigReader* MyConf = new ConfigReader(ServerInstance); allowlist.clear();