From 9a40974fc2fc0a2bed32cd8e8ca8495b77edf73a Mon Sep 17 00:00:00 2001 From: michael Date: Mon, 3 Jun 2013 23:48:03 +0000 Subject: - Now that invite- and ban-exempts are hardcoded, there's no need to delete them from ISUPPORT-list on /rehash git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2176 82007160-df01-0410-b94d-b575c5fd34c7 --- src/conf.c | 5 ----- src/s_user.c | 2 ++ 2 files changed, 2 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/conf.c b/src/conf.c index ec946fe..6360bf8 100644 --- a/src/conf.c +++ b/src/conf.c @@ -1517,8 +1517,6 @@ read_conf_files(int cold) snprintf(chanmodes, sizeof(chanmodes), "%s", "beI,k,l,imnprstORS"); add_isupport("CHANNELLEN", NULL, LOCAL_CHANNELLEN); add_isupport("TOPICLEN", NULL, ServerInfo.max_topic_length); - add_isupport("EXCEPTS", "e", -1); - add_isupport("INVEX", "I", -1); add_isupport("CHANMODES", chanmodes, -1); /* @@ -1631,9 +1629,6 @@ clear_out_old_conf(void) /* clean out general */ MyFree(ConfigFileEntry.service_name); ConfigFileEntry.service_name = NULL; - - delete_isupport("INVEX"); - delete_isupport("EXCEPTS"); } /* conf_add_class_to_conf() diff --git a/src/s_user.c b/src/s_user.c index 66e188b..a2352df 100644 --- a/src/s_user.c +++ b/src/s_user.c @@ -1368,6 +1368,8 @@ init_isupport(void) add_isupport("PREFIX", "(ov)@+", -1); add_isupport("STATUSMSG", "@+", -1); #endif + add_isupport("EXCEPTS", "e", -1); + add_isupport("INVEX", "I", -1); } /* -- cgit