diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-06-24 15:30:35 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-06-24 15:30:35 +0000 |
commit | 155ff3b99a0e7d8b4d59471934b0c1e0c1f1490a (patch) | |
tree | d984e6f5512b647078119e581d0e87caf721f610 /src | |
parent | 80e1c3c52acdb2971e3a67aa1ef5a076fdf78248 (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
Diffstat (limited to 'src')
-rw-r--r-- | src/conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |