summaryrefslogtreecommitdiff
path: root/src/modules/m_banexception.cpp
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-07-13 17:54:16 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-07-13 17:54:16 +0000
commit33f80efab6317529a999aabeab8082972a2754a4 (patch)
tree4d9b3eedf9b7d86e79117b8219d1307b085a38c0 /src/modules/m_banexception.cpp
parent78ecfd406406d27d33efb4765d72a3fa132ab8ba (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
Diffstat (limited to 'src/modules/m_banexception.cpp')
-rw-r--r--src/modules/m_banexception.cpp2
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
}
}