summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2012-12-18 19:34:41 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2012-12-18 19:34:41 +0000
commitdf7542c649deea93c52fd46bd88983ab7faa1749 (patch)
tree788ef5dc319aa056b8b781e82465d318935313d5
parent0adab16b35a3bf34fbad4bd80c7a5432e282c17d (diff)
- channel_mode.c: chm_invex, chm_exempt: ban and invite exemptions are
now always sent regardless of CAP_IE/CAP_EX git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1684 82007160-df01-0410-b94d-b575c5fd34c7
-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 de5b014..3dc08d8 100644
--- a/src/channel_mode.c
+++ b/src/channel_mode.c
@@ -889,7 +889,7 @@ chm_except(struct Client *client_p, struct Client *source_p,
mode_changes[mode_count].letter = c;
mode_changes[mode_count].dir = dir;
- mode_changes[mode_count].caps = CAP_EX;
+ mode_changes[mode_count].caps = 0;
mode_changes[mode_count].nocaps = 0;
mode_changes[mode_count].mems = ONLY_CHANOPS;
mode_changes[mode_count].id = NULL;
@@ -964,7 +964,7 @@ chm_invex(struct Client *client_p, struct Client *source_p,
mode_changes[mode_count].letter = c;
mode_changes[mode_count].dir = dir;
- mode_changes[mode_count].caps = CAP_IE;
+ mode_changes[mode_count].caps = 0;
mode_changes[mode_count].nocaps = 0;
mode_changes[mode_count].mems = ONLY_CHANOPS;
mode_changes[mode_count].id = NULL;