]> jfr.im git - solanum.git/blobdiff - extensions/m_adminwall.c
msg: remove last vestiges of the fakelag system. charybdis has never supported fakelag.
[solanum.git] / extensions / m_adminwall.c
index ddbd2d3fc25603badbb1a1087b0dc6a8f8e48d6f..53cf0f29c9c8177a752e5a172ec33b153bd324f9 100644 (file)
 #include "s_serv.h"
 #include "messages.h"
 
-static int mo_adminwall(struct Client *, struct Client *, int, const char **);
-static int me_adminwall(struct Client *, struct Client *, int, const char **);
+static int mo_adminwall(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
+static int me_adminwall(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
 
 struct Message adminwall_msgtab = {
-       "ADMINWALL", 0, 0, 0, MFLG_SLOW,
+       "ADMINWALL", 0, 0, 0, 0,
        {mg_unreg, mg_not_oper, mg_ignore, mg_ignore, {me_adminwall, 2}, {mo_adminwall, 2}}
 };
-                
+
 
 mapi_clist_av1 adminwall_clist[] = { &adminwall_msgtab, NULL };
 DECLARE_MODULE_AV1(adminwall, NULL, NULL, adminwall_clist, NULL, NULL, "$Revision: 20702 $");
@@ -58,8 +58,8 @@ DECLARE_MODULE_AV1(adminwall, NULL, NULL, adminwall_clist, NULL, NULL, "$Revisio
  */
 
 static int
-mo_adminwall(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])  
-{ 
+mo_adminwall(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
+{
         if(!IsAdmin(source_p))
         {
                 sendto_one(source_p, form_str(ERR_NOPRIVS),
@@ -69,11 +69,11 @@ mo_adminwall(struct Client *client_p, struct Client *source_p, int parc, const c
         sendto_wallops_flags(UMODE_ADMIN, source_p, "ADMINWALL - %s", parv[1]);
         sendto_match_servs(source_p, "*", CAP_ENCAP, NOCAPS, "ENCAP * ADMINWALL :%s", parv[1]);
         return 0;
-} 
+}
 
 static int
-me_adminwall(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])  
-{ 
+me_adminwall(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
+{
         sendto_wallops_flags(UMODE_ADMIN, source_p, "ADMINWALL - %s", parv[1]);
         return 0;
 }