From 823ab5285f3b0929623b5afa54305e04d1691167 Mon Sep 17 00:00:00 2001 From: Andrew Wilcox Date: Mon, 7 Mar 2016 00:52:50 -0600 Subject: [PATCH] core/m_join: Add AV2 description --- modules/core/m_join.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/core/m_join.c b/modules/core/m_join.c index 677792b96..966352b7f 100644 --- a/modules/core/m_join.c +++ b/modules/core/m_join.c @@ -45,6 +45,7 @@ static int m_join(struct MsgBuf *, struct Client *, struct Client *, int, const char **); static int ms_join(struct MsgBuf *, struct Client *, struct Client *, int, const char **); static int ms_sjoin(struct MsgBuf *, struct Client *, struct Client *, int, const char **); +static const char join_desc[] = "Provides the JOIN and TS6 SJOIN commands to facilitate joining and creating channels"; static int h_can_create_channel; static int h_channel_join; @@ -67,7 +68,7 @@ mapi_hlist_av1 join_hlist[] = { { NULL, NULL }, }; -DECLARE_MODULE_AV2(join, NULL, NULL, join_clist, join_hlist, NULL, NULL, NULL, NULL); +DECLARE_MODULE_AV2(join, NULL, NULL, join_clist, join_hlist, NULL, NULL, NULL, join_desc); static void do_join_0(struct Client *client_p, struct Client *source_p); static int check_channel_name_loc(struct Client *source_p, const char *name);