diff options
| author | 2013-12-14 22:55:10 -0800 | |
|---|---|---|
| committer | 2013-12-14 22:55:10 -0800 | |
| commit | 59df199aaedf8018979c444eaa8cca59ff001877 (patch) | |
| tree | e7d873a3250f50b2ecb7c4bc47d7fcf7a9cefefd /src/modules/m_dccallow.cpp | |
| parent | m_cap Convert capability names in CAP REQ to lowercase before processing them (diff) | |
| parent | Make various self contained methods static. (diff) | |
Merge pull request #689 from SaberUK/master+cxxify
Clean up various things.
Diffstat (limited to 'src/modules/m_dccallow.cpp')
| -rw-r--r-- | src/modules/m_dccallow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_dccallow.cpp b/src/modules/m_dccallow.cpp index e5c8df6aa..487e4a7ed 100644 --- a/src/modules/m_dccallow.cpp +++ b/src/modules/m_dccallow.cpp @@ -168,7 +168,7 @@ class CommandDccallow : public Command length = InspIRCd::Duration(parameters[1]); } - if (!ServerInstance->IsValidMask(mask)) + if (!InspIRCd::IsValidMask(mask)) { return CMD_FAILURE; } |
