summaryrefslogtreecommitdiff
path: root/src/irc/core/channels-query.c
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-04-27 11:38:52 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-04-27 11:38:52 +0000
commita94e6e735c4683f8bc6f7e142b399e1379239bc7 (patch)
treef32d497ecde006f1ee0e11d373bc669543e225a7 /src/irc/core/channels-query.c
parent849c091ac4b7e458fce4341ebb274406a929e2bf (diff)
downloadirssi-a94e6e735c4683f8bc6f7e142b399e1379239bc7.zip
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
Diffstat (limited to 'src/irc/core/channels-query.c')
-rw-r--r--src/irc/core/channels-query.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/irc/core/channels-query.c b/src/irc/core/channels-query.c
index 4132e133..0691d3ef 100644
--- a/src/irc/core/channels-query.c
+++ b/src/irc/core/channels-query.c
@@ -207,8 +207,9 @@ static void channel_send_query(IRC_SERVER_REC *server, int query)
for (tmp = chans; tmp != NULL; tmp = tmp->next) {
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 403", "chanquery who abort", 1,
"event 315", "chanquery who end", 1,
"event 352", "silent event who", 1, NULL);
}