X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=ircd%2Fm_opmode.c;h=ddfd734955d1fa648ce9216af3021b6d97daf775;hb=362239ace2f74ae33afd0e0b935f9e3acb736968;hp=01db05a54e496cd0017867a930e60a6d325ad433;hpb=3e21658a6e8c1c716acff1329819d44530fdb865;p=ircu2.10.12-pk.git diff --git a/ircd/m_opmode.c b/ircd/m_opmode.c index 01db05a..ddfd734 100644 --- a/ircd/m_opmode.c +++ b/ircd/m_opmode.c @@ -123,7 +123,8 @@ int ms_opmode(struct Client* cptr, struct Client* sptr, int parc, char* parv[]) mode_parse(&mbuf, cptr, sptr, chptr, parc - 2, parv + 2, (MODE_PARSE_SET | /* Set the modes on the channel */ MODE_PARSE_STRICT | /* Be strict about it */ - MODE_PARSE_FORCE)); /* And force them to be accepted */ + MODE_PARSE_FORCE), /* And force them to be accepted */ + NULL); modebuf_flush(&mbuf); /* flush the modes */ @@ -166,7 +167,8 @@ int mo_opmode(struct Client* cptr, struct Client* sptr, int parc, char* parv[]) mode_parse(&mbuf, cptr, sptr, chptr, parc - 2, parv + 2, (MODE_PARSE_SET | /* set the modes on the channel */ - MODE_PARSE_FORCE)); /* And force them to be accepted */ + MODE_PARSE_FORCE), /* And force them to be accepted */ + NULL); modebuf_flush(&mbuf); /* flush the modes */