From 155ff3b99a0e7d8b4d59471934b0c1e0c1f1490a Mon Sep 17 00:00:00 2001 From: michael Date: Tue, 24 Jun 2014 15:30:35 +0000 Subject: - 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 --- src/conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit