summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2012-12-20 11:40:50 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2012-12-20 11:40:50 +0000
commit90d091539469c268a35b9632644efa399f5186e1 (patch)
tree2a0445321bfabbdc0684262355d5c8f254b5d91f
parentc0ba3a89ca150a1dd8cf900837db78481281c021 (diff)
- m_help.c: allow a maximum of MAXPARA parameters
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1699 82007160-df01-0410-b94d-b575c5fd34c7
-rw-r--r--modules/m_help.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/m_help.c b/modules/m_help.c
index 03dd7f7..dfc1cfb 100644
--- a/modules/m_help.c
+++ b/modules/m_help.c
@@ -170,12 +170,12 @@ sendhelpfile(struct Client *source_p, const char *path, const char *topic)
}
static struct Message help_msgtab = {
- "HELP", 0, 0, 0, 0, MFLG_SLOW, 0,
+ "HELP", 0, 0, 0, MAXPARA, MFLG_SLOW, 0,
{m_unregistered, m_help, m_ignore, m_ignore, mo_help, m_ignore}
};
static struct Message uhelp_msgtab = {
- "UHELP", 0, 0, 0, 0, MFLG_SLOW, 0,
+ "UHELP", 0, 0, 0, MAXPARA, MFLG_SLOW, 0,
{m_unregistered, m_help, m_ignore, m_ignore, mo_uhelp, m_ignore}
};