1
0
mirror of https://github.com/irssi/irssi.git synced 2024-12-04 14:46:39 -05:00

Fixes for servers that replied to WHO #a,#b with 403 message.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@184 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-04-27 11:38:52 +00:00 committed by cras
parent 849c091ac4
commit a94e6e735c

View File

@ -207,8 +207,9 @@ static void channel_send_query(IRC_SERVER_REC *server, int query)
for (tmp = chans; tmp != NULL; tmp = tmp->next) { for (tmp = chans; tmp != NULL; tmp = tmp->next) {
chanrec = tmp->data; chanrec = tmp->data;
server_redirect_event((SERVER_REC *) server, chanstr, 2, server_redirect_event((SERVER_REC *) server, chanstr, 3,
"event 401", "chanquery who abort", 1, "event 401", "chanquery who abort", 1,
"event 403", "chanquery who abort", 1,
"event 315", "chanquery who end", 1, "event 315", "chanquery who end", 1,
"event 352", "silent event who", 1, NULL); "event 352", "silent event who", 1, NULL);
} }