X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_remove.cpp;h=b87b5d2c129c519d1bcd6e817bd7edbd2da0b25a;hb=caa89fb37c532930805f0b144e3298624ec1adec;hp=c3482da46903b4c00232d7ae9d072ff8fb2cfa64;hpb=cadc11999ee28545e9beb92de116c151832af5c4;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_remove.cpp b/src/modules/m_remove.cpp index c3482da46..b87b5d2c1 100644 --- a/src/modules/m_remove.cpp +++ b/src/modules/m_remove.cpp @@ -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 @@ -69,7 +69,7 @@ class RemoveBase } } - CmdResult Handle (const char** parameters, int pcnt, User *user, bool neworder) + CmdResult Handle (const char* const* parameters, int pcnt, User *user, bool neworder) { const char* channame; const char* username; @@ -99,7 +99,7 @@ class RemoveBase /* Fix by brain - someone needs to learn to validate their input! */ if (!target || !channel) { - user->WriteServ("401 %s %s :No such nick/channel", user->nick, !target ? username : channame); + user->WriteNumeric(401, "%s %s :No such nick/channel", user->nick, !target ? username : channame); return CMD_FAILURE; } @@ -213,7 +213,7 @@ class CommandRemove : public Command, public RemoveBase TRANSLATE4(TR_NICK, TR_TEXT, TR_TEXT, TR_END); } - CmdResult Handle (const char** parameters, int pcnt, User *user) + CmdResult Handle (const char* const* parameters, int pcnt, User *user) { return RemoveBase::Handle(parameters, pcnt, user, false); } @@ -230,7 +230,7 @@ class CommandFpart : public Command, public RemoveBase syntax = " []"; } - CmdResult Handle (const char** parameters, int pcnt, User *user) + CmdResult Handle (const char* const* parameters, int pcnt, User *user) { return RemoveBase::Handle(parameters, pcnt, user, true); } @@ -256,10 +256,6 @@ class ModuleRemove : public Module ServerInstance->Modules->Attach(eventlist, this, 2); } - void Implements(char* List) - { - List[I_On005Numeric] = List[I_OnRehash] = 1; - } virtual void On005Numeric(std::string &output) { @@ -278,7 +274,7 @@ class ModuleRemove : public Module virtual Version GetVersion() { - return Version(1, 1, 1, 0, VF_COMMON | VF_VENDOR, API_VERSION); + return Version(1, 2, 1, 0, VF_COMMON | VF_VENDOR, API_VERSION); } };