From 65ca483f97326157d730a55f7b9e003ec41ee877 Mon Sep 17 00:00:00 2001 From: Andrew Wilcox Date: Mon, 7 Mar 2016 00:46:56 -0600 Subject: [PATCH] core/m_ban: Add AV2 description --- modules/core/m_ban.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/core/m_ban.c b/modules/core/m_ban.c index 1de160fa..ee7302ee 100644 --- a/modules/core/m_ban.c +++ b/modules/core/m_ban.c @@ -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[])