mirror of
https://github.com/irssi/irssi.git
synced 2026-09-21 07:07:25 +02:00
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
This commit is contained in:
parent
43f1727ef9
commit
21f79f2551
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue