summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-02-25 22:35:40 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-02-25 22:35:40 +0000
commitf9ad830ab4606b482a1e5c12f33edd07af3959a1 (patch)
treee0e2f52c680b215fe8bd0608055cd80b7968b885 /src
parent86e2003a3163f2bb5ff0ea7c6f1a2b453902fcbe (diff)
- 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
Diffstat (limited to 'src')
-rw-r--r--src/channel_mode.c4
1 files changed, 2 insertions, 2 deletions
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;