From 2a2224023fc002a09e269c63c848ae6a84f5c03d Mon Sep 17 00:00:00 2001 From: "Robin Burchell w00t@inspircd.org" Date: Sun, 9 Nov 2008 00:20:33 +0000 Subject: Remove ModulesDelayedAutoLoad. git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1603 5417fbe8-f217-4b02-8779-1006273d7864 --- src/config.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'src/config.c') diff --git a/src/config.c b/src/config.c index 6c51fd343..553287637 100644 --- a/src/config.c +++ b/src/config.c @@ -229,11 +229,8 @@ char *SessionLimitDetailsLoc; bool OSOpersOnly; char *Modules; -char *ModulesDelayed; char **ModulesAutoload; int ModulesNumber; -int ModulesDelayedNumber; -char **ModulesDelayedAutoload; /** * Core Module Stuff @@ -1326,8 +1323,6 @@ Directive directives[] = { {"MysqlRetries", {{PARAM_POSINT, PARAM_RELOAD, &MysqlRetries}}}, {"MysqlRetryGap", {{PARAM_POSINT, PARAM_RELOAD, &MysqlRetryGap}}}, {"ModuleAutoload", {{PARAM_STRING, PARAM_RELOAD, &Modules}}}, - {"ModuleDelayedAutoload", - {{PARAM_STRING, PARAM_RELOAD, &ModulesDelayed}}}, {"NetworkName", {{PARAM_STRING, PARAM_RELOAD, &NetworkName}}}, {"NewsCount", {{PARAM_POSINT, PARAM_RELOAD, &NewsCount}}}, {"NickLen", {{PARAM_POSINT, 0, &NickLen}}}, @@ -1859,8 +1854,6 @@ int read_config(int reload) /* Modules Autoload building... :P */ ModulesAutoload = buildStringList(Modules, &ModulesNumber); - ModulesDelayedAutoload = - buildStringList(ModulesDelayed, &ModulesDelayedNumber); HostServCoreModules = buildStringList(HostCoreModules, &HostServCoreNumber); MemoServCoreModules = -- cgit