]> jfr.im git - solanum.git/blobdiff - modules/m_whowas.c
msg: remove last vestiges of the fakelag system. charybdis has never supported fakelag.
[solanum.git] / modules / m_whowas.c
index 15032f6de00964d6cdb527134cea325f44a68799..82354994ca04c3b5c0714c039f7f71f1dbcf642d 100644 (file)
 #include "parse.h"
 #include "modules.h"
 
-static int m_whowas(struct Client *, struct Client *, int, const char **);
+static int m_whowas(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
 
 struct Message whowas_msgtab = {
-       "WHOWAS", 0, 0, 0, MFLG_SLOW,
+       "WHOWAS", 0, 0, 0, 0,
        {mg_unreg, {m_whowas, 2}, {m_whowas, 4}, mg_ignore, mg_ignore, {m_whowas, 2}}
 };
 
@@ -56,7 +56,7 @@ DECLARE_MODULE_AV1(whowas, NULL, NULL, whowas_clist, NULL, NULL, "$Revision: 171
 **      parv[1] = nickname queried
 */
 static int
-m_whowas(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
+m_whowas(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
 {
        rb_dlink_list *whowas_list;
        rb_dlink_node *ptr;