summaryrefslogtreecommitdiff
path: root/include/modules/dns.h
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2014-07-10 12:17:55 +0200
committerAttila Molnar <attilamolnar@hush.com>2014-07-10 12:17:55 +0200
commitacccaa39641500b8a691db4136e6571102a438ed (patch)
tree5faed16f0fc7ac11566d6df19561abd3c3ad8c43 /include/modules/dns.h
parent8186e0b091a4f487448dcfab7144217a85870d4c (diff)
Remove current time parameter of the Timer constructor
Diffstat (limited to 'include/modules/dns.h')
-rw-r--r--include/modules/dns.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/modules/dns.h b/include/modules/dns.h
index c76c53805..400d2085d 100644
--- a/include/modules/dns.h
+++ b/include/modules/dns.h
@@ -152,7 +152,7 @@ namespace DNS
Module* const creator;
Request(Manager* mgr, Module* mod, const std::string& addr, QueryType qt, bool usecache = true)
- : Timer((ServerInstance->Config->dns_timeout ? ServerInstance->Config->dns_timeout : 5), ServerInstance->Time())
+ : Timer((ServerInstance->Config->dns_timeout ? ServerInstance->Config->dns_timeout : 5))
, Question(addr, qt)
, manager(mgr)
, use_cache(usecache)