diff options
Diffstat (limited to 'src/dns.cpp')
-rw-r--r-- | src/dns.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dns.cpp b/src/dns.cpp index a8aaa3fde..b7bdbca4e 100644 --- a/src/dns.cpp +++ b/src/dns.cpp @@ -914,7 +914,7 @@ void DNS::DelCache(const std::string &source) void Resolver::TriggerCachedResult() { if (CQ) - OnLookupComplete(CQ->data, time_left); + OnLookupComplete(CQ->data, time_left, true); } /** High level abstraction of dns used by application at large */ @@ -1060,7 +1060,7 @@ void DNS::HandleEvent(EventType et, int errornum) this->cache->insert(std::make_pair(res.original.c_str(), CachedQuery(res.result, res.ttl))); } - Classes[res.id]->OnLookupComplete(res.result, res.ttl); + Classes[res.id]->OnLookupComplete(res.result, res.ttl, false); delete Classes[res.id]; Classes[res.id] = NULL; } |