summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rwxr-xr-xsrc/svn-rev.sh2
-rw-r--r--src/userprocess.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/svn-rev.sh b/src/svn-rev.sh
index 8e804010c..2d41e01be 100755
--- a/src/svn-rev.sh
+++ b/src/svn-rev.sh
@@ -1 +1 @@
-echo 3432
+echo 3434
diff --git a/src/userprocess.cpp b/src/userprocess.cpp
index 118916248..76be62d71 100644
--- a/src/userprocess.cpp
+++ b/src/userprocess.cpp
@@ -413,11 +413,11 @@ void LoadAllModules(InspIRCd* ServerInstance)
for (int count = 0; count < Config->ConfValueEnum("module",&Config->config_f); count++)
{
Config->ConfValue("module","name",count,configToken,&Config->config_f);
- printf("Loading module... \033[1;32m%s\033[0m\n",configToken);
+ printf("[\033[1;32m*\033[0m] Loading module:\t\033[1;32m%s\033[0m\n",configToken);
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",ServerInstance->ModuleError());
+ printf("\nThere was an error loading a module: %s\n\n",ServerInstance->ModuleError());
Exit(0);
}
}