X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fctables.h;h=fa0d42d74cda8af1641c2aa200ef09f064d1fcdd;hb=59ca4eec57a9c8b37e79e3031c74b59d4803fc28;hp=513342af2ed06ce3bcf2cb88aaef28580c9fea97;hpb=9d2422582ca07c3c97d99fe7e46cad8c5db839b8;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/ctables.h b/include/ctables.h index 513342af2..fa0d42d74 100644 --- a/include/ctables.h +++ b/include/ctables.h @@ -113,7 +113,7 @@ class CoreExport Command : public Extensible * If the command succeeds but should remain local to this server, * return CMD_LOCALONLY. */ - virtual CmdResult Handle(const char** parameters, int pcnt, User* user) = 0; + virtual CmdResult Handle(const char* const* parameters, int pcnt, User* user) = 0; /** Handle an internal request from another command, the core, or a module * @param Command ID @@ -136,7 +136,7 @@ class CoreExport Command : public Extensible * If the command succeeds but should remain local to this server, * return CMD_LOCALONLY. */ - virtual CmdResult HandleServer(const char** /* parameters */, int /* pcnt */, const std::string& /* servername */) + virtual CmdResult HandleServer(const char* const* /* parameters */, int /* pcnt */, const std::string& /* servername */) { return CMD_INVALID; }