]> jfr.im git - solanum.git/commitdiff
core/m_ban: Add AV2 description
authorAndrew Wilcox <redacted>
Mon, 7 Mar 2016 06:46:56 +0000 (00:46 -0600)
committerAndrew Wilcox <redacted>
Mon, 7 Mar 2016 06:48:27 +0000 (00:48 -0600)
modules/core/m_ban.c

index 1de160fa6065d3cf6ce6e78fed22a1a518a16e23..ee7302eead73ec55006ec0e700dba7b5682f938c 100644 (file)
@@ -48,6 +48,7 @@
 
 static int m_ban(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[]);
 static int ms_ban(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[]);
+static const char ban_desc[] = "Provides the TS6 BAN command for propagating network-wide bans";
 
 struct Message ban_msgtab = {
        "BAN", 0, 0, 0, 0,
@@ -55,7 +56,7 @@ struct Message ban_msgtab = {
 };
 
 mapi_clist_av1 ban_clist[] =  { &ban_msgtab, NULL };
-DECLARE_MODULE_AV2(ban, NULL, NULL, ban_clist, NULL, NULL, NULL, NULL, NULL);
+DECLARE_MODULE_AV2(ban, NULL, NULL, ban_clist, NULL, NULL, NULL, NULL, ban_desc);
 
 static int
 m_ban(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])