]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/commands/cmd_restart.cpp
Move _ext to replace the original, SVSSILENCE comes next
[user/henk/code/inspircd.git] / src / commands / cmd_restart.cpp
index 3f1ff13b8b18e551a6d0ceedabf76828c4c34997..cc634d860280e2856aab4f43ff5dcfec8cd2279e 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
@@ -19,12 +19,12 @@ extern "C" DllExport Command* init_command(InspIRCd* Instance)
        return new CommandRestart(Instance);
 }
 
-CmdResult CommandRestart::Handle (const char** parameters, int pcnt, User *user)
+CmdResult CommandRestart::Handle (const char* const* parameters, int, User *user)
 {
-       ServerInstance->Log(DEFAULT,"Restart: %s",user->nick);
-       if (!strcmp(parameters[0],ServerInstance->Config->restartpass))
+       ServerInstance->Logs->Log("COMMAND",DEFAULT,"Restart: %s",user->nick);
+       if (!ServerInstance->PassCompare(user, ServerInstance->Config->restartpass, parameters[0], ServerInstance->Config->powerhash))
        {
-               ServerInstance->WriteOpers("*** RESTART command from %s!%s@%s, restarting server.",user->nick,user->ident,user->host);
+               ServerInstance->SNO->WriteToSnoMask('A', "RESTART command from %s!%s@%s, restarting server.",user->nick,user->ident,user->host);
 
                try
                {
@@ -38,7 +38,7 @@ CmdResult CommandRestart::Handle (const char** parameters, int pcnt, User *user)
        }
        else
        {
-               ServerInstance->WriteOpers("*** Failed RESTART Command from %s!%s@%s.",user->nick,user->ident,user->host);
+               ServerInstance->SNO->WriteToSnoMask('A', "Failed RESTART Command from %s!%s@%s.",user->nick,user->ident,user->host);
                return CMD_FAILURE;
        }