]> granicus.if.org Git - pdns/commitdiff
pdnssec: log missing glue as warning
authorKees Monshouwer <mind04@monshouwer.org>
Mon, 1 Jun 2015 08:24:09 +0000 (10:24 +0200)
committermind04 <mind04@monshouwer.org>
Mon, 1 Jun 2015 08:25:41 +0000 (10:25 +0200)
pdns/pdnssec.cc

index 84539cc83c27553297e4f2f0c857b30937eec876..ec46daef3e3ecafffa6a22080c5220b289bf2e06 100644 (file)
@@ -626,8 +626,8 @@ int checkZone(DNSSECKeeper &dk, UeberBackend &B, const std::string& zone)
 
   for(const auto &qname : checkglue) {
     if (!glue.count(qname)) {
-      cerr<<"[Error] Missing glue for '"<<qname<<"' in zone '"<<zone<<"'"<<endl;
-      numerrors++;
+      cerr<<"[Warning] Missing glue for '"<<qname<<"' in zone '"<<zone<<"'"<<endl;
+      numwarnings++;
     }
   }