summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-04-21 00:59:44 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-04-21 00:59:44 +0000
commitfc3eb31b39f4bf4efea4e3173779225254e4a8a2 (patch)
tree07e6663a144dd68e2e06f69d8d3539c720191b75 /src
parent2f19dfa694ea0e16ce7dae0a9a7880f6ff419578 (diff)
Added warning on unresolved symbol errors about 'you might need ./inspircd start'
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1147 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/inspircd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index af4e741ac..7d326b4e3 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -3718,7 +3718,7 @@ int InspIRCd(void)
if (!LoadModule(configToken))
{
log(DEBUG,"Exiting due to a module loader error.");
- printf("\nThere was an error loading a module: %s\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",ModuleError());
Exit(0);
}
}