From ed5e136a3f7779ba40d01729e70fa8e061f70266 Mon Sep 17 00:00:00 2001 From: pk910 Date: Tue, 28 Jun 2011 15:34:18 +0200 Subject: [PATCH] Ignore second parameter of WEBIRC command --- ircd/m_webirc.c | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) 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)) { -- 2.20.1