]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Consistency in spelling non-resolving 10096/head
authorOtto <otto.moerbeek@open-xchange.com>
Fri, 19 Feb 2021 10:46:30 +0000 (11:46 +0100)
committerOtto <otto.moerbeek@open-xchange.com>
Fri, 19 Feb 2021 10:46:30 +0000 (11:46 +0100)
pdns/syncres.cc

index 7ea387932a4676c95297e4656c36b14ff1b3391a..2a4345dc47e74257f3038db1bcde824a22bab8e1 100644 (file)
@@ -535,7 +535,7 @@ uint64_t SyncRes::doDumpNonResolvingNS(int fd)
     close(newfd);
     return 0;
   }
-  fprintf(fp.get(), "; non resolving nameserver dump follows\n");
+  fprintf(fp.get(), "; non-resolving nameserver dump follows\n");
   fprintf(fp.get(), "; name\tcount\ttimestamp\n");
   uint64_t count=0;
 
@@ -2299,7 +2299,7 @@ vector<ComboAddress> SyncRes::retrieveAddressesForNS(const std::string& prefix,
 
   if (!tns->first.empty()) {
     if (s_nonresolvingnsmaxfails > 0 && t_sstorage.nonresolving.value(tns->first) >= s_nonresolvingnsmaxfails) {
-      LOG(prefix<<qname<<": NS "<<tns->first<< " in nonresolving map, skipping"<<endl);
+      LOG(prefix<<qname<<": NS "<<tns->first<< " in non-resolving map, skipping"<<endl);
       return result;
     }