]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_loadmodule.h
Add fixes to stop people changing the SID of a live server - certain configuration...
[user/henk/code/inspircd.git] / include / commands / cmd_loadmodule.h
index 9d5ad621bcc59e77923090368feadfd2fad6f02d..7255e3de73cdb857b207a3a9cfcf2caad4ba2ef1 100644 (file)
@@ -29,14 +29,14 @@ class CommandLoadmodule : public Command
  public:
        /** Constructor for loadmodule.
         */
-       CommandLoadmodule (InspIRCd* Instance) : Command(Instance,"LOADMODULE",'o',1) { syntax = "<modulename>"; }
+       CommandLoadmodule (InspIRCd* Instance) : Command(Instance,"LOADMODULE","o",1) { syntax = "<modulename>"; }
        /** 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 char* const* parameters, int pcnt, User *user);
 };
 
 #endif