summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-06-24 15:30:35 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-06-24 15:30:35 +0000
commit155ff3b99a0e7d8b4d59471934b0c1e0c1f1490a (patch)
treed984e6f5512b647078119e581d0e87caf721f610
parent80e1c3c52acdb2971e3a67aa1ef5a076fdf78248 (diff)
- conf.c:read_conf_files(): chanmodes c an M were missed in CHANMODES
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@4052 82007160-df01-0410-b94d-b575c5fd34c7
-rw-r--r--src/conf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf.c b/src/conf.c
index 1ab8734..bed3b57 100644
--- a/src/conf.c
+++ b/src/conf.c
@@ -1494,7 +1494,7 @@ read_conf_files(int cold)
snprintf(chanlimit, sizeof(chanlimit), "#:%d",
ConfigChannel.max_chans_per_user);
add_isupport("CHANLIMIT", chanlimit, -1);
- snprintf(chanmodes, sizeof(chanmodes), "%s", "beI,k,l,imnprstORS");
+ snprintf(chanmodes, sizeof(chanmodes), "%s", "beI,k,l,cimnprstMORS");
add_isupport("CHANNELLEN", NULL, LOCAL_CHANNELLEN);
add_isupport("TOPICLEN", NULL, ServerInfo.max_topic_length);
add_isupport("CHANMODES", chanmodes, -1);