From ec576f315aacd314fd2688a553efb9a14761a2c5 Mon Sep 17 00:00:00 2001 From: Richard Hitt Date: Thu, 21 Mar 2013 12:05:42 -0700 Subject: [PATCH] Do an XP_TE_BANLIST only for ban, not exempt/invite/quiet --- src/common/inbound.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/inbound.c b/src/common/inbound.c index f9083eaf..bd882aea 100644 --- a/src/common/inbound.c +++ b/src/common/inbound.c @@ -1294,7 +1294,7 @@ inbound_banlist (session *sess, time_t stamp, char *chan, char *mask, char *bann { nowindow: /* let proto-irc.c do the 'goto def' for exemptions */ - if (rplcode == 348) /* RPL_EXCEPTLIST */ + if (rplcode != 367) /* RPL_EXCEPTLIST */ return FALSE; EMIT_SIGNAL (XP_TE_BANLIST, sess, chan, mask, banner, time_str, 0);