diff options
author | attilamolnar <attilamolnar@hush.com> | 2013-04-03 15:54:28 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2013-04-03 15:54:28 +0200 |
commit | 886f1ba488a5ab9d7fe4d7b4ac6b9c9dc2841738 (patch) | |
tree | 02eabf80806341753a17e6d1e68cacbc41ee484c /src/modules/m_cban.cpp | |
parent | 2bcb73e8339d4ad9db6c0e9cd1307b522f3fcde5 (diff) |
Convert InspIRCd::Duration() to be static
Diffstat (limited to 'src/modules/m_cban.cpp')
-rw-r--r-- | src/modules/m_cban.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_cban.cpp b/src/modules/m_cban.cpp index a3c0130b9..69eb82e51 100644 --- a/src/modules/m_cban.cpp +++ b/src/modules/m_cban.cpp @@ -114,7 +114,7 @@ class CommandCBan : public Command else { // Adding - XXX todo make this respect <insane> tag perhaps.. - long duration = ServerInstance->Duration(parameters[1]); + unsigned long duration = InspIRCd::Duration(parameters[1]); const char *reason = (parameters.size() > 2) ? parameters[2].c_str() : "No reason supplied"; CBan* r = new CBan(ServerInstance->Time(), duration, user->nick.c_str(), reason, parameters[0].c_str()); |