aboutsummaryrefslogtreecommitdiffstats
path: root/src/server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server.cpp')
-rw-r--r--src/server.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server.cpp b/src/server.cpp
index 95031b6ac..2a59bd5c6 100644
--- a/src/server.cpp
+++ b/src/server.cpp
@@ -70,10 +70,10 @@ void InspIRCd::QuickExit(int status)
void InspIRCd::Rehash(const std::string& uuid)
{
- if (!ServerInstance->ConfigThread)
+ if (!ConfigThread)
{
- ServerInstance->ConfigThread = new ConfigReaderThread(uuid);
- ServerInstance->ConfigThread->Start();
+ ConfigThread = new ConfigReaderThread(uuid);
+ ConfigThread->Start();
}
}