]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_alltime.cpp
DOH! Fix my muppetry of a segfault, and fix some warnings
[user/henk/code/inspircd.git] / src / modules / m_alltime.cpp
index 48b54137e62f6ce3521ce513dad02d673f8052dd..75ed4f35560cf6327d28f797dacd78c5d3a2fa9c 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
  * See: http://www.inspircd.org/wiki/index.php/Credits
  *
  * This program is free but copyrighted software; see
 class CommandAlltime : public Command
 {
  public:
-       CommandAlltime(InspIRCd *Instance) : Command(Instance, "ALLTIME", 'o', 0)
+       CommandAlltime(InspIRCd *Instance) : Command(Instance, "ALLTIME", "o", 0)
        {
                this->source = "m_alltime.so";
                syntax.clear();
                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();
-               
-               string msg = ":" + string(ServerInstance->Config->ServerName) + " NOTICE " + user->nick + " :System time for " +
-                       ServerInstance->Config->ServerName + " is: " + fmtdate + " (delta " + ConvToStr(delta) + " seconds): Time with delta: "+ fmtdate2;
+               std::string msg = ":" + std::string(ServerInstance->Config->ServerName) + " NOTICE " + user->nick + " :System time for " +
+                       ServerInstance->Config->ServerName + " is: " + fmtdate;
                
                if (IS_LOCAL(user))
                {
@@ -45,7 +40,7 @@ class CommandAlltime : public Command
                }
                else
                {
-                       deque<string> params;
+                       std::deque<std::string> params;
                        params.push_back(user->nick);
                        params.push_back(msg);
                        Event ev((char *) &params, NULL, "send_push");
@@ -67,6 +62,7 @@ class Modulealltime : public Module
        {
                mycommand = new CommandAlltime(ServerInstance);
                ServerInstance->AddCommand(mycommand);
+
        }
        
        virtual ~Modulealltime()