]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - extensions/m_okick.c
Add description for LOCOPS message.
[irc/rqf/shadowircd.git] / extensions / m_okick.c
index 156a046e1e0d4672e919b56d6b3e31f0e7b9d070..29e8b64246b14a9b2788613dc6da8174da33a90b 100644 (file)
@@ -26,7 +26,7 @@
 #include "stdinc.h"
 #include "channel.h"
 #include "client.h"
-#include "irc_string.h"
+#include "match.h"
 #include "ircd.h"
 #include "numeric.h"
 #include "send.h"
@@ -52,7 +52,6 @@ DECLARE_MODULE_AV1(okick, NULL, NULL, okick_clist, NULL, NULL, "$Revision: 3554
 
 /*
 ** m_okick
-**      parv[0] = sender prefix
 **      parv[1] = channel
 **      parv[2] = client to kick
 **      parv[3] = kick comment
@@ -73,7 +72,7 @@ mo_okick(struct Client *client_p, struct Client *source_p, int parc, const char
 
        if(*parv[2] == '\0')
        {
-               sendto_one(source_p, form_str(ERR_NEEDMOREPARAMS), me.name, parv[0], "KICK");
+               sendto_one(source_p, form_str(ERR_NEEDMOREPARAMS), me.name, source_p->name, "KICK");
                return 0;
        }
 
@@ -108,14 +107,14 @@ mo_okick(struct Client *client_p, struct Client *source_p, int parc, const char
 
        if((target_p = find_client(user)) == NULL)
        {
-               sendto_one(source_p, form_str(ERR_NOSUCHNICK), me.name, parv[0], user);
+               sendto_one(source_p, form_str(ERR_NOSUCHNICK), me.name, source_p->name, user);
                return 0;
        }
 
        if((msptr = find_channel_membership(chptr, target_p)) == NULL)
        {
                sendto_one(source_p, form_str(ERR_USERNOTINCHANNEL),
-                          me.name, parv[0], parv[1], parv[2]);
+                          me.name, source_p->name, parv[1], parv[2]);
                return 0;
        }
 
@@ -136,8 +135,6 @@ mo_okick(struct Client *client_p, struct Client *source_p, int parc, const char
                             me.name, chptr->chname, who->name, comment);
        sendto_server(&me, chptr, CAP_TS6, NOCAPS,
                      ":%s KICK %s %s :%s", me.id, chptr->chname, who->id, comment);
-       sendto_server(&me, chptr, NOCAPS, CAP_TS6,
-                     ":%s KICK %s %s :%s", me.name, chptr->chname, who->name, comment);
        remove_user_from_channel(msptr);
        return 0;
 }