From 70ae15836c31a7c0b406545ecf1bd8240d9b0348 Mon Sep 17 00:00:00 2001 From: bert hubert Date: Thu, 15 Jan 2015 10:21:30 +0100 Subject: [PATCH] our new loop detection did not correctly discriminate between A and AAAA --- pdns/syncres.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/syncres.hh b/pdns/syncres.hh index f92a4d44a..bed57d6d9 100644 --- a/pdns/syncres.hh +++ b/pdns/syncres.hh @@ -467,7 +467,7 @@ private: bool operator<(const GetBestNSAnswer &b) const { return boost::tie(qname, qtype, bestns) < - boost::tie(b.qname, qtype, b.bestns); + boost::tie(b.qname, b.qtype, b.bestns); } }; -- 2.40.0