aboutsummaryrefslogtreecommitdiffstats
path: root/src/server.cpp
diff options
context:
space:
mode:
authorGravatar Attila Molnar2014-06-13 15:09:20 +0200
committerGravatar Attila Molnar2014-06-13 15:09:20 +0200
commitb071a6acd805bde6119a66481768be13102d1c2b (patch)
tree262710810e684b688a72ce3ee7a6d2ca519e83b0 /src/server.cpp
parentChange allocation of InspIRCd::stats to be physically part of the object cont... (diff)
downloadinspircd++-b071a6acd805bde6119a66481768be13102d1c2b.tar.gz
inspircd++-b071a6acd805bde6119a66481768be13102d1c2b.tar.bz2
inspircd++-b071a6acd805bde6119a66481768be13102d1c2b.zip
Change allocation of InspIRCd::Threads to be physically part of the object containing it
Diffstat (limited to 'src/server.cpp')
-rw-r--r--src/server.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server.cpp b/src/server.cpp
index ac638a08c..ab5369231 100644
--- a/src/server.cpp
+++ b/src/server.cpp
@@ -61,7 +61,7 @@ void InspIRCd::Rehash(const std::string& uuid)
if (!ServerInstance->ConfigThread)
{
ServerInstance->ConfigThread = new ConfigReaderThread(uuid);
- ServerInstance->Threads->Start(ServerInstance->ConfigThread);
+ ServerInstance->Threads.Start(ServerInstance->ConfigThread);
}
}