diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-09-09 10:28:38 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-09-09 10:28:38 +0000 |
commit | 123bf690976784fa91263d23d51ed461ac389211 (patch) | |
tree | 2278f466d7eca7ae43df88b9e7f31a49ba4bed99 /src/modules/extra | |
parent | 4453eeac80c09e70ecafeff02e9c5c40be4b0f0a (diff) |
Whoops, schoolboy error
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10487 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/extra')
-rw-r--r-- | src/modules/extra/m_mysql.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/extra/m_mysql.cpp b/src/modules/extra/m_mysql.cpp index 60a2edbca..cc4a52655 100644 --- a/src/modules/extra/m_mysql.cpp +++ b/src/modules/extra/m_mysql.cpp @@ -765,9 +765,9 @@ ModuleSQL::ModuleSQL(InspIRCd* Me) : Module(Me), rehashing(false) } else { - Parent->LoggingMutex->Lock(); + LoggingMutex->Lock(); ServerInstance->Logs->Log("m_mysql", DEBUG, "MySQL: Interthread comms port is %d", MessagePipe->GetPort()); - Parent->LoggingMutex->Unlock(); + LoggingMutex->Unlock(); } Dispatcher = new DispatcherThread(ServerInstance, this); |