]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
our new loop detection did not correctly discriminate between A and AAAA
authorbert hubert <bert.hubert@netherlabs.nl>
Thu, 15 Jan 2015 09:21:30 +0000 (10:21 +0100)
committerbert hubert <bert.hubert@netherlabs.nl>
Thu, 15 Jan 2015 09:21:30 +0000 (10:21 +0100)
pdns/syncres.hh

index f92a4d44affdd4f4bc8a97a701908e19d6fbc1d6..bed57d6d906ae64ce67b8d89ad7523ae57621ef2 100644 (file)
@@ -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);
     }
   };