diff options
| author | 2013-12-15 05:34:00 +0000 | |
|---|---|---|
| committer | 2013-12-15 06:46:44 +0000 | |
| commit | ad47ea662698e72ff8f79b03512b1e7fe81bdf53 (patch) | |
| tree | e7d873a3250f50b2ecb7c4bc47d7fcf7a9cefefd /src/modules/m_timedbans.cpp | |
| parent | Purge docs/rfc from the repository. (diff) | |
| download | inspircd++-ad47ea662698e72ff8f79b03512b1e7fe81bdf53.tar.gz inspircd++-ad47ea662698e72ff8f79b03512b1e7fe81bdf53.tar.bz2 inspircd++-ad47ea662698e72ff8f79b03512b1e7fe81bdf53.zip | |
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.cpp | 2 |
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); |
