summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-06-03 23:48:03 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-06-03 23:48:03 +0000
commit9a40974fc2fc0a2bed32cd8e8ca8495b77edf73a (patch)
tree82d7a356eed5c07ccecb257b6f03dc6fd70691db
parent594e4d362bbbe11b8bc5258bec7d7f2314545c2b (diff)
- 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
-rw-r--r--src/conf.c5
-rw-r--r--src/s_user.c2
2 files changed, 2 insertions, 5 deletions
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);
}
/*