summaryrefslogtreecommitdiff
path: root/src/userprocess.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-14 14:32:04 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-14 14:32:04 +0000
commite0e8b0df5a8fe0070d198c46991bfd371548f00c (patch)
tree0cae269fc2f8af2894a0fca36c282d1170adc843 /src/userprocess.cpp
parent70141d07c0e815b2c3794917738b3b740ccd42ea (diff)
More config tidyups
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2413 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/userprocess.cpp')
-rw-r--r--src/userprocess.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/userprocess.cpp b/src/userprocess.cpp
index 338d7a1fd..30a601a7a 100644
--- a/src/userprocess.cpp
+++ b/src/userprocess.cpp
@@ -375,9 +375,9 @@ void LoadAllModules()
/* We must load the modules AFTER initializing the socket engine, now */
MODCOUNT = -1;
char configToken[MAXBUF];
- for (int count = 0; count < ConfValueEnum("module",&Config->config_f); count++)
+ for (int count = 0; count < Config->ConfValueEnum("module",&Config->config_f); count++)
{
- ConfValue("module","name",count,configToken,&Config->config_f);
+ Config->ConfValue("module","name",count,configToken,&Config->config_f);
printf("Loading module... \033[1;32m%s\033[0m\n",configToken);
if (!LoadModule(configToken))
{