diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-08-22 16:14:36 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-08-22 16:14:36 +0000 |
commit | a1a7b96a8c994eb09a3d071f3daf28252b8c188b (patch) | |
tree | c40214c3e8295c565496983ae627b05ccef6c2d1 /src/modules/m_dccallow.cpp | |
parent | 58f4306bb6e1f91076fccf30a3b43a40b3d1915a (diff) |
Match conversion stuff.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10216 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_dccallow.cpp')
-rw-r--r-- | src/modules/m_dccallow.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_dccallow.cpp b/src/modules/m_dccallow.cpp index 76658f454..738567ff7 100644 --- a/src/modules/m_dccallow.cpp +++ b/src/modules/m_dccallow.cpp @@ -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; |