From f9ad830ab4606b482a1e5c12f33edd07af3959a1 Mon Sep 17 00:00:00 2001 From: michael Date: Tue, 25 Feb 2014 22:35:40 +0000 Subject: - channel_mode.c: removed CAP_IE and CAP_EX from channel_capabs[] git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@3050 82007160-df01-0410-b94d-b575c5fd34c7 --- src/channel_mode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/channel_mode.c b/src/channel_mode.c index 49e0a64..9e23791 100644 --- a/src/channel_mode.c +++ b/src/channel_mode.c @@ -55,9 +55,9 @@ static int mode_count; static int mode_limit; /* number of modes set other than simple */ static int simple_modes_mask; /* bit mask of simple modes already set */ #ifdef HALFOPS -static int channel_capabs[] = { CAP_EX, CAP_IE, CAP_TS6, CAP_HOPS }; +static int channel_capabs[] = { CAP_TS6, CAP_HOPS }; #else -static int channel_capabs[] = { CAP_EX, CAP_IE, CAP_TS6 }; +static int channel_capabs[] = { CAP_TS6 }; #endif static struct ChCapCombo chcap_combos[NCHCAP_COMBOS]; extern mp_pool_t *ban_pool; -- cgit