From: bert hubert Date: Thu, 15 Jan 2015 09:21:30 +0000 (+0100) Subject: our new loop detection did not correctly discriminate between A and AAAA X-Git-Tag: rec-3.7.0-rc1~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=70ae15836c31a7c0b406545ecf1bd8240d9b0348;p=thirdparty%2Fpdns.git our new loop detection did not correctly discriminate between A and AAAA --- diff --git a/pdns/syncres.hh b/pdns/syncres.hh index f92a4d44af..bed57d6d90 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); } };