From f20c6fb28ec2a4fe4290e75c5f00dcf48e3793a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Thu, 24 Sep 2015 00:35:30 +0200 Subject: [PATCH] degesch: fix logging of RPL_INVITING --- degesch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/degesch.c b/degesch.c index 3896d74..030d37b 100644 --- a/degesch.c +++ b/degesch.c @@ -6225,8 +6225,8 @@ irc_handle_rpl_inviting (struct server *s, const struct irc_message *msg) if (msg->params.len < 3) return; - const char *channel_name = msg->params.vector[1]; - const char *nickname = msg->params.vector[2]; + const char *nickname = msg->params.vector[1]; + const char *channel_name = msg->params.vector[2]; struct buffer *buffer; if (!(buffer = str_map_find (&s->irc_buffer_map, channel_name)))