summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-09-04 11:40:20 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-09-04 11:40:20 +0000
commita8fa3da65e9befa1105f616ceea16c78d605b396 (patch)
treec405af1759ef3473143a070d6be7d48ed9222bed /src/inspircd.cpp
parentbc770c5388bc5517be85afb43255cb9f8ead0d33 (diff)
mutexengine -> mutexfactory
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10386 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 875755ed7..96b779271 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -458,7 +458,7 @@ InspIRCd::InspIRCd(int argc, char** argv)
ThreadEngineFactory* tef = new ThreadEngineFactory();
this->Threads = tef->Create(this);
delete tef;
- this->Mutexes = new MutexEngine(this);
+ this->Mutexes = new MutexFactory(this);
/* Default implementation does nothing */
this->PI = new ProtocolInterface(this);