diff options
| author | 2013-04-03 15:54:28 +0200 | |
|---|---|---|
| committer | 2013-04-03 15:54:28 +0200 | |
| commit | 886f1ba488a5ab9d7fe4d7b4ac6b9c9dc2841738 (patch) | |
| tree | 02eabf80806341753a17e6d1e68cacbc41ee484c /src/modules/m_dccallow.cpp | |
| parent | Merge pull request #460 from SaberUK/master+genssl-bugfix (diff) | |
Convert InspIRCd::Duration() to be static
Diffstat (limited to 'src/modules/m_dccallow.cpp')
| -rw-r--r-- | src/modules/m_dccallow.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_dccallow.cpp b/src/modules/m_dccallow.cpp index e08b5d3d1..7ae20bb3a 100644 --- a/src/modules/m_dccallow.cpp +++ b/src/modules/m_dccallow.cpp @@ -152,10 +152,10 @@ class CommandDccallow : public Command std::string mask = target->nick+"!"+target->ident+"@"+target->dhost; std::string default_length = ServerInstance->Config->ConfValue("dccallow")->getString("length"); - long length; + unsigned long length; if (parameters.size() < 2) { - length = ServerInstance->Duration(default_length); + length = InspIRCd::Duration(default_length); } else if (!atoi(parameters[1].c_str())) { @@ -163,7 +163,7 @@ class CommandDccallow : public Command } else { - length = ServerInstance->Duration(parameters[1]); + length = InspIRCd::Duration(parameters[1]); } if (!ServerInstance->IsValidMask(mask.c_str())) |
