diff options
| author | 2021-11-05 04:24:14 +0000 | |
|---|---|---|
| committer | 2021-11-05 04:24:14 +0000 | |
| commit | 0f2257136d71389c274f0ab6dd68db3239da1d71 (patch) | |
| tree | 255c6a21653ca3b7806983ec9f7796e50b243f19 /src/modules/m_spanningtree/pingtimer.cpp | |
| parent | Merge branch 'insp3' into master. (diff) | |
Remove unused time_t field from the timer system.
This is equivalent to calling InspIRCd::Now() and is only actually
used in one place in modules.
Diffstat (limited to 'src/modules/m_spanningtree/pingtimer.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/pingtimer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/pingtimer.cpp b/src/modules/m_spanningtree/pingtimer.cpp index 0187532bd..d87b39672 100644 --- a/src/modules/m_spanningtree/pingtimer.cpp +++ b/src/modules/m_spanningtree/pingtimer.cpp @@ -83,7 +83,7 @@ void PingTimer::SetState(State newstate) // If state == PS_IDLE, do not set the timer, see above why } -bool PingTimer::Tick(time_t currtime) +bool PingTimer::Tick() { if (server->IsDead()) return false; |
