X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fserver.cpp;h=01f523e4708ff5af90efed6af6b4f82210cbeaaf;hb=a245aa22076e17e72c84e5a0f5699209cdf62727;hp=56970054d4a67de5e779ae5e88a4775ac3795c43;hpb=b6dbd6caab62bc2c0d11ce5a45d511611eb9c2ef;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/server.cpp b/src/server.cpp index 56970054d..01f523e47 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -48,19 +48,14 @@ void InspIRCd::Exit(int status) void RehashHandler::Call(const std::string &reason) { - Server->RehashFinishMutex->Lock(); - Server->SNO->WriteToSnoMask('A', "Rehashing config file %s %s",ServerConfig::CleanFilename(Server->ConfigFileName), reason.c_str()); + Server->SNO->WriteToSnoMask('a', "Rehashing config file %s %s",ServerConfig::CleanFilename(Server->ConfigFileName), reason.c_str()); Server->RehashUsersAndChans(); FOREACH_MOD_I(Server, I_OnGarbageCollect, OnGarbageCollect()); if (!Server->ConfigThread) { - Server->Config->RehashUserUID = ""; - Server->Config->RehashParameter = ""; - - Server->ConfigThread = new ConfigReaderThread(Server, false, ""); - Server->Threads->Create(Server->ConfigThread); + Server->ConfigThread = new ConfigReaderThread(Server, ""); + Server->Threads->Start(Server->ConfigThread); } - Server->RehashFinishMutex->Unlock(); } void InspIRCd::RehashServer()