diff --git a/modules/core/m_server.c b/modules/core/m_server.c index c25f02b9..d83a3214 100644 --- a/modules/core/m_server.c +++ b/modules/core/m_server.c @@ -43,6 +43,8 @@ static int mr_server(struct MsgBuf *, struct Client *, struct Client *, int, const char **); static int ms_server(struct MsgBuf *, struct Client *, struct Client *, int, const char **); static int ms_sid(struct MsgBuf *, struct Client *, struct Client *, int, const char **); +static const char m_server_desc[] = + "Provides the TS6 commands to introduce a new server to the network"; struct Message server_msgtab = { "SERVER", 0, 0, 0, 0, @@ -55,7 +57,7 @@ struct Message sid_msgtab = { mapi_clist_av1 server_clist[] = { &server_msgtab, &sid_msgtab, NULL }; -DECLARE_MODULE_AV2(server, NULL, NULL, server_clist, NULL, NULL, NULL, NULL, NULL); +DECLARE_MODULE_AV2(server, NULL, NULL, server_clist, NULL, NULL, NULL, NULL, m_server_desc); int bogus_host(const char *host); static int set_server_gecos(struct Client *, const char *);