X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_securelist.cpp;h=1b0424ddba8029830f115900f51a3351d6b62053;hb=00fa6d592ed2640fcdf74444786de555c1c3da25;hp=2a693836c9140e4f803a3a0a5d606e365ee88113;hpb=8de87c2a9b5f5e68caac1ca06b1021ed69cb3d6a;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_securelist.cpp b/src/modules/m_securelist.cpp index 2a693836c..1b0424ddb 100644 --- a/src/modules/m_securelist.cpp +++ b/src/modules/m_securelist.cpp @@ -2,7 +2,7 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd: (C) 2002-2008 InspIRCd Development Team + * InspIRCd: (C) 2002-2009 InspIRCd Development Team * See: http://www.inspircd.org/wiki/index.php/Credits * * This program is free but copyrighted software; see @@ -64,7 +64,7 @@ class ModuleSecureList : public Module { /* Normally wouldnt be allowed here, are they exempt? */ for (std::vector::iterator x = allowlist.begin(); x != allowlist.end(); x++) - if (InspIRCd::Match(user->MakeHost(), *x)) + if (InspIRCd::Match(user->MakeHost(), *x, ascii_case_insensitive_map)) return 0; /* Not exempt, BOOK EM DANNO! */ @@ -87,7 +87,7 @@ class ModuleSecureList : public Module void Prioritize() { Module* safelist = ServerInstance->Modules->Find("m_safelist.so"); - ServerInstance->Modules->SetPriority(this, I_OnPreCommand, PRIO_BEFORE, &safelist); + ServerInstance->Modules->SetPriority(this, I_OnPreCommand, PRIORITY_BEFORE, &safelist); } };