AV2 descriptions for m_[no]*

This commit is contained in:
Elizabeth Myers 2016-03-07 02:45:37 -06:00
parent bc89faebd1
commit 1fe7d6083d
3 changed files with 13 additions and 3 deletions

View file

@ -47,7 +47,10 @@ struct Message oper_msgtab = {
};
mapi_clist_av1 oper_clist[] = { &oper_msgtab, NULL };
DECLARE_MODULE_AV2(oper, NULL, NULL, oper_clist, NULL, NULL, NULL, NULL, NULL);
static const char oper_desc[] = "Provides the OPER command to become an IRC operator";
DECLARE_MODULE_AV2(oper, NULL, NULL, oper_clist, NULL, NULL, NULL, NULL, oper_desc);
static int match_oper_password(const char *password, struct oper_conf *oper_p);