summaryrefslogtreecommitdiff
path: root/src/modules/m_timedbans.cpp
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2013-12-15 05:34:00 +0000
committerPeter Powell <petpow@saberuk.com>2013-12-15 06:46:44 +0000
commitad47ea662698e72ff8f79b03512b1e7fe81bdf53 (patch)
treee7d873a3250f50b2ecb7c4bc47d7fcf7a9cefefd /src/modules/m_timedbans.cpp
parent7fea7c24c509731040b76191d279972fced7b64c (diff)
Make various self contained methods static.
- InspIRCd::IsValidMask - InspIRCd::TimeString
Diffstat (limited to 'src/modules/m_timedbans.cpp')
-rw-r--r--src/modules/m_timedbans.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_timedbans.cpp b/src/modules/m_timedbans.cpp
index 2441f1aa8..40cc162c1 100644
--- a/src/modules/m_timedbans.cpp
+++ b/src/modules/m_timedbans.cpp
@@ -75,7 +75,7 @@ class CommandTban : public Command
setban.push_back(parameters[0]);
setban.push_back("+b");
bool isextban = ((mask.size() > 2) && (mask[1] == ':'));
- if (!isextban && !ServerInstance->IsValidMask(mask))
+ if (!isextban && !InspIRCd::IsValidMask(mask))
mask.append("!*@*");
setban.push_back(mask);