From b212d7134452d695ce63aacfc79a1166df429808 Mon Sep 17 00:00:00 2001 From: Elizabeth Myers Date: Mon, 7 Mar 2016 01:32:19 -0600 Subject: [PATCH] chm_noctcp: add AV2 string --- modules/chm_noctcp.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/chm_noctcp.c b/modules/chm_noctcp.c index c1d1edb9..f23f18a5 100644 --- a/modules/chm_noctcp.c +++ b/modules/chm_noctcp.c @@ -43,6 +43,9 @@ mapi_hfn_list_av1 chm_noctcp_hfnlist[] = { { NULL, NULL } }; +static const char chm_noctcp_desc[] = + "Adds channel mode +C, which blocks CTCP messages from a channel (except ACTION)"; + static void chm_noctcp_process(hook_data_privmsg_channel *data) { @@ -76,4 +79,4 @@ _moddeinit(void) cflag_orphan('C'); } -DECLARE_MODULE_AV2(chm_noctcp, _modinit, _moddeinit, NULL, NULL, chm_noctcp_hfnlist, NULL, NULL, NULL); +DECLARE_MODULE_AV2(chm_noctcp, _modinit, _moddeinit, NULL, NULL, chm_noctcp_hfnlist, NULL, NULL, chm_noctcp_desc);