From: Peter van Dijk Date: Mon, 5 Jul 2021 09:25:40 +0000 (+0200) Subject: auth NOTIFY: log names of NSes we could not resolve X-Git-Tag: auth-4.6.0-alpha1~6^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dec9bc71e22cd15d28e64a1da16e7caad065eea3;p=thirdparty%2Fpdns.git auth NOTIFY: log names of NSes we could not resolve --- diff --git a/pdns/mastercommunicator.cc b/pdns/mastercommunicator.cc index d386a956d4..7bd71f476f 100644 --- a/pdns/mastercommunicator.cc +++ b/pdns/mastercommunicator.cc @@ -58,15 +58,16 @@ void CommunicatorClass::queueNotifyDomain(const DomainInfo& di, UeberBackend* B) nsset.insert(getRR(rr.dr)->getNS().toString()); for(const auto & j : nsset) { - vector nsips=fns.lookup(DNSName(j), B); + auto dnsj = DNSName(j); + vector nsips=fns.lookup(dnsj, B); if(nsips.empty()) - g_log<