Correct minimum parameter counts for PRESENCE.

This commit is contained in:
Jilles Tjoelker 2009-06-03 20:03:15 +02:00
parent 320a0f8528
commit f62bb0776a
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ static int me_presence(struct Client *, struct Client *, int, const char **);
struct Message presence_msgtab = {
"PRESENCE", 0, 0, 0, MFLG_SLOW,
{mg_unreg, {m_presence, 1}, {m_presence, 1}, mg_ignore, {me_presence, 1}, {m_presence, 1}}
{mg_unreg, {m_presence, 2}, {m_presence, 2}, mg_ignore, {me_presence, 2}, {m_presence, 2}}
};
mapi_clist_av1 presence_clist[] = { &presence_msgtab, NULL };