X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcmd_kill.cpp;h=1ce7d8f5a6e26d4fc18c7e5522b07a0c9dfc1744;hb=59b1a8955142935b02af6446005ab47fc7c3fc8c;hp=36b348c565d8fb5e65bc2aceb1ee265fa75a4f02;hpb=a76eb059c7bf26512d8db3afdb1a78024212a337;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/cmd_kill.cpp b/src/cmd_kill.cpp index 36b348c56..1ce7d8f5a 100644 --- a/src/cmd_kill.cpp +++ b/src/cmd_kill.cpp @@ -2,10 +2,10 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * Inspire is copyright (C) 2002-2005 ChatSpike-Dev. + * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. * E-mail: - * - * + * + * * * Written by Craig Edwards, Craig McLure, and others. * This program is free but copyrighted software; see @@ -56,7 +56,7 @@ void cmd_kill::Handle (char **parameters, int pcnt, userrec *user) { log(DEBUG,"into kill mechanism"); int MOD_RESULT = 0; - FOREACH_RESULT(OnKill(user,u,parameters[1])); + FOREACH_RESULT(I_OnKill,OnKill(user,u,parameters[1])); if (MOD_RESULT) { log(DEBUG,"A module prevented the kill with result %d",MOD_RESULT); return; @@ -69,7 +69,7 @@ void cmd_kill::Handle (char **parameters, int pcnt, userrec *user) snprintf(killreason,MAXBUF,"[%s] Killed (%s (%s))",Config->ServerName,user->nick,parameters[1]); WriteCommonExcept(u,"QUIT :%s",killreason); - FOREACH_MOD OnRemoteKill(user,u,killreason); + FOREACH_MOD(I_OnRemoteKill,OnRemoteKill(user,u,killreason)); user_hash::iterator iter = clientlist.find(u->nick); if (iter != clientlist.end())