]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_alltime.cpp
add a couple of parenthesis to the password comparison, because i couldnt easily...
[user/henk/code/inspircd.git] / src / modules / m_alltime.cpp
index b5f4968d0bd174a021b69d2ade4d2f1be728bf05..c65a05c5998af8cc064caaa1d3acc22deb2ddf32 100644 (file)
@@ -25,19 +25,14 @@ class CommandAlltime : public Command
                translation.push_back(TR_END);
        }
 
-       CmdResult Handle(const char **parameters, int pcnt, User *user)
+       CmdResult Handle(const char* const* parameters, int pcnt, User *user)
        {
                char fmtdate[64];
-               char fmtdate2[64];
-               time_t now = ServerInstance->Time(false);
+               time_t now = ServerInstance->Time();
                strftime(fmtdate, sizeof(fmtdate), "%F %T", gmtime(&now));
-               now = ServerInstance->Time(true);
-               strftime(fmtdate2, sizeof(fmtdate2), "%F %T", gmtime(&now));
-               
-               int delta = ServerInstance->GetTimeDelta();
                
                std::string msg = ":" + std::string(ServerInstance->Config->ServerName) + " NOTICE " + user->nick + " :System time for " +
-                       ServerInstance->Config->ServerName + " is: " + fmtdate + " (delta " + ConvToStr(delta) + " seconds): Time with delta: "+ fmtdate2;
+                       ServerInstance->Config->ServerName + " is: " + fmtdate;
                
                if (IS_LOCAL(user))
                {
@@ -45,11 +40,7 @@ class CommandAlltime : public Command
                }
                else
                {
-                       std::deque<std::string> params;
-                       params.push_back(user->nick);
-                       params.push_back(msg);
-                       Event ev((char *) &params, NULL, "send_push");
-                       ev.Send(ServerInstance);
+                       ServerInstance->PI->PushToClient(user, msg);
                }
 
                /* we want this routed out! */