diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-03-15 15:38:09 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-03-15 15:38:09 +0100 |
commit | 0babd8c0783242fc647cdcdfefb399c099e367ad (patch) | |
tree | 4cc656f9d1555349fb4b4068e0422f78634d0f7b /src/inspsocket.cpp | |
parent | ea590a5d80741c3bc030cb0a2fcb3c59da4fd078 (diff) |
Change allocation of InspIRCd::Timers to be physically part of the object containing it
Diffstat (limited to 'src/inspsocket.cpp')
-rw-r--r-- | src/inspsocket.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspsocket.cpp b/src/inspsocket.cpp index d15a1b6a5..f22645168 100644 --- a/src/inspsocket.cpp +++ b/src/inspsocket.cpp @@ -111,7 +111,7 @@ BufferedSocketError BufferedSocket::BeginConnect(const irc::sockets::sockaddrs& return I_ERR_NOMOREFDS; this->Timeout = new SocketTimeout(this->GetFd(), this, timeout, ServerInstance->Time()); - ServerInstance->Timers->AddTimer(this->Timeout); + ServerInstance->Timers.AddTimer(this->Timeout); ServerInstance->Logs->Log("SOCKET", LOG_DEBUG, "BufferedSocket::DoConnect success"); return I_ERR_NONE; |