]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_die.h
Minor style tidyup.
[user/henk/code/inspircd.git] / include / commands / cmd_die.h
index 3713a9bbf8f82d549f66319e61acd549c7452f48..eb726591aab6a41501869e02d98fa1be745fa066 100644 (file)
@@ -29,14 +29,14 @@ class CommandDie : public Command
  public:
        /** Constructor for die.
         */
-       CommandDie (InspIRCd* Instance) : Command(Instance,"DIE",'o',1,false,0) { syntax = "<password>"; }
+       CommandDie (InspIRCd* Instance) : Command(Instance,"DIE","o",1,false,0) { syntax = "<password>"; }
        /** Handle command.
         * @param parameters The parameters to the comamnd
         * @param pcnt The number of parameters passed to teh command
         * @param user The user issuing the command
         * @return A value from CmdResult to indicate command success or failure.
         */
-       CmdResult Handle(const char** parameters, int pcnt, User *user);
+       CmdResult Handle(const std::vector<std::string>& parameters, User *user);
 };
 
 #endif