]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_securelist.cpp
[Taros] Add m_sakick.so
[user/henk/code/inspircd.git] / src / modules / m_securelist.cpp
index 2a693836c9140e4f803a3a0a5d606e365ee88113..1b0424ddba8029830f115900f51a3351d6b62053 100644 (file)
@@ -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<std::string>::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);
        }
 
 };