diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-14 20:44:34 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-14 20:44:34 +0000 |
commit | a61e6b29163201b31f539658aade078fa56da318 (patch) | |
tree | a5054108cf3079a87f6a94d1f73fa41300e91737 /src/userprocess.cpp | |
parent | 13547ae3d3f448e92dc47bb4022c37fd742b78c8 (diff) |
Fixed ModuleError()
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2454 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/userprocess.cpp')
-rw-r--r-- | src/userprocess.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/userprocess.cpp b/src/userprocess.cpp index d2a3d4e5f..c1df2ef6e 100644 --- a/src/userprocess.cpp +++ b/src/userprocess.cpp @@ -380,7 +380,7 @@ void LoadAllModules() if (!ServerInstance->LoadModule(configToken)) { log(DEFAULT,"Exiting due to a module loader error."); - printf("\nThere was an error loading a module: %s\n\nYou might want to do './inspircd start' instead of 'bin/inspircd'\n\n",ModuleError()); + printf("\nThere was an error loading a module: %s\n\nYou might want to do './inspircd start' instead of 'bin/inspircd'\n\n",ServerInstance->ModuleError()); Exit(0); } } |