]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_dccallow.cpp
Fix IO hooking modules to use the new (not old) hooking call
[user/henk/code/inspircd.git] / src / modules / m_dccallow.cpp
index 76658f454291650d561599bcd0080e0c060c8d47..39c8e33c63f61e0a9827975f55ac06b35aaf2499 100644 (file)
@@ -139,7 +139,7 @@ class CommandDccallow : public Command
                                                        user->WriteNumeric(996, "%s %s :%s is already on your DCCALLOW list", user->nick.c_str(), user->nick.c_str(), target->nick.c_str());
                                                        return CMD_FAILURE;
                                                }
-                                               else if (ServerInstance->MatchText(user->GetFullHost(), k->hostmask))
+                                               else if (InspIRCd::Match(user->GetFullHost(), k->hostmask))
                                                {
                                                        user->WriteNumeric(996, "%s %s :You cannot add yourself to your own DCCALLOW list!", user->nick.c_str(), user->nick.c_str());
                                                        return CMD_FAILURE;
@@ -312,7 +312,7 @@ class ModuleDCCAllow : public Module
                                        if (u->GetExt("dccallow_list", dl) && dl->size())
                                        {
                                                for (dccallowlist::const_iterator iter = dl->begin(); iter != dl->end(); ++iter)
-                                                       if (ServerInstance->MatchText(user->GetFullHost(), iter->hostmask))
+                                                       if (InspIRCd::Match(user->GetFullHost(), iter->hostmask))
                                                                return 0;
                                        }
 
@@ -338,7 +338,7 @@ class ModuleDCCAllow : public Module
 
                                                for (unsigned int i = 0; i < bfl.size(); i++)
                                                {
-                                                       if (ServerInstance->MatchText(filename, bfl[i].filemask))
+                                                       if (InspIRCd::Match(filename, bfl[i].filemask))
                                                        {
                                                                if (bfl[i].action == "allow")
                                                                        return 0;
@@ -463,7 +463,7 @@ class ModuleDCCAllow : public Module
 
        virtual Version GetVersion()
        {
-               return Version(1, 2, 0, 0, VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("$Id$", VF_COMMON | VF_VENDOR, API_VERSION);
        }
 };