aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_conn_join.cpp
diff options
context:
space:
mode:
authorGravatar Attila Molnar2014-03-15 15:38:09 +0100
committerGravatar Attila Molnar2014-03-15 15:38:09 +0100
commit0babd8c0783242fc647cdcdfefb399c099e367ad (patch)
tree4cc656f9d1555349fb4b4068e0422f78634d0f7b /src/modules/m_conn_join.cpp
parentChange allocation of UserManager::clientlist to be physically part of the obj... (diff)
Change allocation of InspIRCd::Timers to be physically part of the object containing it
Diffstat (limited to 'src/modules/m_conn_join.cpp')
-rw-r--r--src/modules/m_conn_join.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_conn_join.cpp b/src/modules/m_conn_join.cpp
index a5aba68df..631e5945c 100644
--- a/src/modules/m_conn_join.cpp
+++ b/src/modules/m_conn_join.cpp
@@ -46,7 +46,7 @@ class JoinTimer : public Timer
: Timer(delay, ServerInstance->Time(), false)
, user(u), channels(chans), ext(ex)
{
- ServerInstance->Timers->AddTimer(this);
+ ServerInstance->Timers.AddTimer(this);
}
bool Tick(time_t time) CXX11_OVERRIDE