diff options
author | Matt Schatz <genius3000@g3k.solutions> | 2019-02-17 02:20:56 -0700 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2019-02-18 09:17:38 +0000 |
commit | ff7bebe90c6b348b0df28864e4954d04bd17256b (patch) | |
tree | 5c7f07c40ee38c0aa88688e97ba3e74023bad700 | |
parent | e02c22ff165c7b0dbe39343066a4167e94f5618e (diff) |
X-line expiries: use the new DurationString() function.
-rw-r--r-- | src/modules/m_svshold.cpp | 4 | ||||
-rw-r--r-- | src/xline.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/m_svshold.cpp b/src/modules/m_svshold.cpp index daffdf7d9..dbf621932 100644 --- a/src/modules/m_svshold.cpp +++ b/src/modules/m_svshold.cpp @@ -58,8 +58,8 @@ public: { if (!silent) { - ServerInstance->SNO->WriteToSnoMask('x', "Removing expired SVSHOLD %s (set by %s %ld seconds ago): %s", - nickname.c_str(), source.c_str(), (long)(ServerInstance->Time() - set_time), reason.c_str()); + ServerInstance->SNO->WriteToSnoMask('x', "Removing expired SVSHOLD %s (set by %s %s ago): %s", + nickname.c_str(), source.c_str(), InspIRCd::DurationString(ServerInstance->Time() - set_time).c_str(), reason.c_str()); } } diff --git a/src/xline.cpp b/src/xline.cpp index ccdc58dc2..c5b952087 100644 --- a/src/xline.cpp +++ b/src/xline.cpp @@ -682,8 +682,8 @@ void ELine::OnAdd() void XLine::DisplayExpiry() { bool onechar = (type.length() == 1); - ServerInstance->SNO->WriteToSnoMask('x', "Removing expired %s%s %s (set by %s %ld seconds ago): %s", - type.c_str(), (onechar ? "-line" : ""), Displayable().c_str(), source.c_str(), (long)(ServerInstance->Time() - set_time), reason.c_str()); + ServerInstance->SNO->WriteToSnoMask('x', "Removing expired %s%s %s (set by %s %s ago): %s", + type.c_str(), (onechar ? "-line" : ""), Displayable().c_str(), source.c_str(), InspIRCd::DurationString(ServerInstance->Time() - set_time).c_str(), reason.c_str()); } const std::string& ELine::Displayable() |