mirror of
https://github.com/irssi/irssi.git
synced 2026-08-16 23:22:16 +02:00
increase disconnect buffer and get rid of some magic 510 values
This commit is contained in:
parent
1c99bf78c7
commit
27546354ca
5 changed files with 15 additions and 12 deletions
|
|
@ -131,7 +131,7 @@ static void notifylist_timeout_server(IRC_SERVER_REC *server)
|
|||
|
||||
len = strlen(nick);
|
||||
|
||||
if (cmd->len+len+1 > 510)
|
||||
if (cmd->len+len+1 > MAX_IRC_MESSAGE_LEN)
|
||||
ison_send(server, cmd);
|
||||
|
||||
g_string_append_printf(cmd, "%s ", nick);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue