From 9fd8fe2dcc4a0ab6dd0fa4a548f7c179d79a2fdd Mon Sep 17 00:00:00 2001 From: michael Date: Sat, 17 Nov 2012 19:43:57 +0000 Subject: - channel.c:send_channel_modes(): now that CAP_IE and CAP_EX are mandatory, let's always send invite/ban exception during a burst git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1661 82007160-df01-0410-b94d-b575c5fd34c7 --- src/channel.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/channel.c b/src/channel.c index c79ecdd..5417278 100644 --- a/src/channel.c +++ b/src/channel.c @@ -293,11 +293,8 @@ send_channel_modes(struct Client *client_p, struct Channel *chptr) send_members(client_p, chptr, modebuf, parabuf); send_mode_list(client_p, chptr, &chptr->banlist, 'b'); - - if (IsCapable(client_p, CAP_EX)) - send_mode_list(client_p, chptr, &chptr->exceptlist, 'e'); - if (IsCapable(client_p, CAP_IE)) - send_mode_list(client_p, chptr, &chptr->invexlist, 'I'); + send_mode_list(client_p, chptr, &chptr->exceptlist, 'e'); + send_mode_list(client_p, chptr, &chptr->invexlist, 'I'); } /*! \brief check channel name for invalid characters -- cgit