summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/configreader.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp
index 1fb434493..db897b6cc 100644
--- a/src/configreader.cpp
+++ b/src/configreader.cpp
@@ -1210,6 +1210,12 @@ void ServerConfig::Apply(ServerConfig* old, const std::string &useruid)
else
ServerInstance->SNO->WriteGlobalSno('a', line);
}
+
+ if (!old)
+ {
+ // Starting up, so print it out so it's seen. XXX this is a bit of a hack.
+ printf("%s\n", line.c_str());
+ }
}
errstr.clear();