From 21f79f2551647cb7c1b1c030d7f6e95fe544c319 Mon Sep 17 00:00:00 2001 From: David Leadbeater Date: Tue, 8 Sep 2026 23:19:33 +1000 Subject: [PATCH] proxy: Correct number of parameters sent in 005 119c028 (in 2005) attempted to limit to 15 parameters, but didn't account for the nick and trailing text in ISUPPORT. Fixes #1641 --- src/irc/proxy/dump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/irc/proxy/dump.c b/src/irc/proxy/dump.c index 82dc1fe5..eccd32b8 100644 --- a/src/irc/proxy/dump.c +++ b/src/irc/proxy/dump.c @@ -260,7 +260,7 @@ void proxy_dump_data(CLIENT_REC *client) for (;; tmp++) { if (*tmp != NULL) { g_string_append_printf(paramstr, "%s ", *tmp); - if (++count < 15) + if (++count < 13) continue; }