summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/m_svinfo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/m_svinfo.c b/modules/m_svinfo.c
index 28072f6..dd60d54 100644
--- a/modules/m_svinfo.c
+++ b/modules/m_svinfo.c
@@ -56,7 +56,7 @@ ms_svinfo(struct Client *client_p, struct Client *source_p,
return 0;
}
- if (!IsServer(source_p) || !MyConnect(source_p) || parc < 5)
+ if (!IsServer(source_p) || !MyConnect(source_p))
return 0;
if (TS_CURRENT < atoi(parv[2]) || atoi(parv[1]) < TS_MIN)
@@ -119,7 +119,7 @@ ms_svinfo(struct Client *client_p, struct Client *source_p,
static struct Message svinfo_msgtab =
{
- "SVINFO", 0, 0, 4, MAXPARA, MFLG_SLOW, 0,
+ "SVINFO", 0, 0, 5, MAXPARA, MFLG_SLOW, 0,
{ m_unregistered, m_ignore, ms_svinfo, m_ignore, m_ignore, m_ignore }
};