From: pk910 Date: Tue, 28 Jun 2011 13:34:18 +0000 (+0200) Subject: Ignore second parameter of WEBIRC command X-Git-Tag: WGN5~61 X-Git-Url: http://git.pk910.de/?p=ircu2.10.12-pk.git;a=commitdiff_plain;h=ed5e136a3f7779ba40d01729e70fa8e061f70266 Ignore second parameter of WEBIRC command --- diff --git a/ircd/m_webirc.c b/ircd/m_webirc.c index e235e7f..13fbd6e 100644 --- a/ircd/m_webirc.c +++ b/ircd/m_webirc.c @@ -144,7 +144,7 @@ static struct webirc_block *webirc_match(const char *passwd, const char *real_ho * * parv[0] = sender prefix * parv[1] = password - * parv[2] = "cgiirc" + * parv[2] = "cgiirc" (ignored) * parv[3] = hostname * parv[4] = ip */ @@ -169,18 +169,6 @@ int m_webirc(struct Client* cptr, struct Client* sptr, int parc, char* parv[]) { if(parc < 5) return need_more_params(sptr, "WEBIRC"); - if(strcmp(parv[2], "cgiirc")) { - if(feature_bool(FEAT_WEBIRC_REJECT)) { - IPcheck_connect_fail(sptr); - return exit_client(cptr, sptr, &me, "WebIRC protocol violation (p2)."); - } - else { - len = sprintf(webirc_buf, "NOTICE %s :%sWebIRC protocol violation (p2).\r\n", nick, auth ? "*** " : ""); - webirc_resp(sptr, webirc_buf, len); - return 0; /* continue with normal authentication */ - } - } - /* created ip in dotted notation */ con_addr = ircd_ntoa(&(cli_ip(sptr))); if(0 == ipmask_parse(parv[4], &addr, NULL)) {