From 1abbafc07a53803d72865963907d15232b4fd6c5 Mon Sep 17 00:00:00 2001 From: special Date: Wed, 29 Nov 2006 22:41:41 +0000 Subject: Added InspIRCd::GetTimeDelta() - previously m_alltime was using a hack to get the delta, which wasn't always reliable git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5827 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_alltime.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/modules') diff --git a/src/modules/m_alltime.cpp b/src/modules/m_alltime.cpp index 0ce517886..d207d457e 100644 --- a/src/modules/m_alltime.cpp +++ b/src/modules/m_alltime.cpp @@ -24,8 +24,7 @@ class cmd_alltime : public command_t time_t now = ServerInstance->Time(); strftime(fmtdate, sizeof(fmtdate), "%F %T", gmtime(&now)); - // I'm too lazy to add a function to fetch the delta, so lets just cheat.. - int delta = time(NULL) - now; + int delta = ServerInstance->GetTimeDelta(); string msg = ":" + string(ServerInstance->Config->ServerName) + " NOTICE " + user->nick + " :Time for " + ServerInstance->Config->ServerName + " is: " + fmtdate + " (delta " + ConvToStr(delta) + " seconds)"; -- cgit v1.2.3