summaryrefslogtreecommitdiff
path: root/modules/proxyscan.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2024-02-11 17:53:32 +0000
committerSadie Powell <sadie@witchery.services>2024-02-11 17:56:35 +0000
commit30b9f127113cc715cf90f87a298572b8a73b6788 (patch)
tree9c3ceafda20a3d370425f38086e8b3fc7e7698b7 /modules/proxyscan.cpp
parent5337326cc976612657677c41d7a1d7bb1e671968 (diff)
Remove the now parameter from the Timer class.
This was never actually changed from the default.
Diffstat (limited to 'modules/proxyscan.cpp')
-rw-r--r--modules/proxyscan.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/proxyscan.cpp b/modules/proxyscan.cpp
index b92de0dea..4634b9f95 100644
--- a/modules/proxyscan.cpp
+++ b/modules/proxyscan.cpp
@@ -211,7 +211,8 @@ class ModuleProxyScan final
: public Timer
{
public:
- ConnectionTimeout(Module *c, long timeout) : Timer(c, timeout, Anope::CurTime, true)
+ ConnectionTimeout(Module *c, long timeout)
+ : Timer(c, timeout, true)
{
}