diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-07-13 17:54:16 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-07-13 17:54:16 +0000 |
commit | 33f80efab6317529a999aabeab8082972a2754a4 (patch) | |
tree | 4d9b3eedf9b7d86e79117b8219d1307b085a38c0 | |
parent | 78ecfd406406d27d33efb4765d72a3fa132ab8ba (diff) |
Fix order of arguments, this means that ban exceptions for extbans actually work again
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10005 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/modules/m_banexception.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_banexception.cpp b/src/modules/m_banexception.cpp index e22ada43d..6cd99c73e 100644 --- a/src/modules/m_banexception.cpp +++ b/src/modules/m_banexception.cpp @@ -104,7 +104,7 @@ public: continue; std::string maskptr = it->mask.substr(2); - if (match(maskptr, str)) + if (match(str, maskptr)) return 1; // matches } } |