diff options
author | Peter Powell <petpow@saberuk.com> | 2013-12-15 05:34:00 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2013-12-15 06:46:44 +0000 |
commit | ad47ea662698e72ff8f79b03512b1e7fe81bdf53 (patch) | |
tree | e7d873a3250f50b2ecb7c4bc47d7fcf7a9cefefd /src/commands/cmd_kline.cpp | |
parent | 7fea7c24c509731040b76191d279972fced7b64c (diff) |
Make various self contained methods static.
- InspIRCd::IsValidMask
- InspIRCd::TimeString
Diffstat (limited to 'src/commands/cmd_kline.cpp')
-rw-r--r-- | src/commands/cmd_kline.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/cmd_kline.cpp b/src/commands/cmd_kline.cpp index 20afae2a9..e95a7ca66 100644 --- a/src/commands/cmd_kline.cpp +++ b/src/commands/cmd_kline.cpp @@ -87,7 +87,7 @@ CmdResult CommandKline::Handle (const std::vector<std::string>& parameters, User else { time_t c_requires_crap = duration + ServerInstance->Time(); - std::string timestr = ServerInstance->TimeString(c_requires_crap); + std::string timestr = InspIRCd::TimeString(c_requires_crap); ServerInstance->SNO->WriteToSnoMask('x',"%s added timed K-line for %s, expires on %s: %s",user->nick.c_str(),target.c_str(), timestr.c_str(), parameters[2].c_str()); } |