aboutsummaryrefslogtreecommitdiffstats
path: root/src/configreader.cpp
diff options
context:
space:
mode:
authorGravatar brain2008-06-18 18:54:25 +0000
committerGravatar brain2008-06-18 18:54:25 +0000
commited6fcd4a50f3a0d84ae07a8a0011b193e00cf088 (patch)
tree3cafa73e9bf1a0e5a65b73a0ff4ebdcf955f154e /src/configreader.cpp
parentIPC now provides feedback via the named pipe, right now the data is just the ... (diff)
downloadinspircd++-ed6fcd4a50f3a0d84ae07a8a0011b193e00cf088.tar.gz
inspircd++-ed6fcd4a50f3a0d84ae07a8a0011b193e00cf088.tar.bz2
inspircd++-ed6fcd4a50f3a0d84ae07a8a0011b193e00cf088.zip
Add the rest of the stuff for named pipe comms, including feedback information, and fix a bug in configreader that made it load the core commands every rehash
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9913 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/configreader.cpp')
-rw-r--r--src/configreader.cpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp
index ad0e972f9..c492f6934 100644
--- a/src/configreader.cpp
+++ b/src/configreader.cpp
@@ -1302,12 +1302,14 @@ void ServerConfig::Read(bool bail, User* user)
}
- /** Note: This is safe, the method checks for user == NULL */
- ServerInstance->Threads->Mutex(true);
- ServerInstance->Parser->SetupCommandTable(user);
- ServerInstance->Threads->Mutex(false);
-
- if (!bail)
+ if (bail)
+ {
+ /** Note: This is safe, the method checks for user == NULL */
+ ServerInstance->Threads->Mutex(true);
+ ServerInstance->Parser->SetupCommandTable(user);
+ ServerInstance->Threads->Mutex(false);
+ }
+ else
{
if (user)
user->WriteServ("NOTICE %s :*** Successfully rehashed server.", user->nick.c_str());