]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
pdnssec: log missing glue as warning 2558/head
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:24:09 +0000 (10:24 +0200)
pdns/pdnssec.cc

index 4aca052f3fd6ecbcd771063169c1d715abed1266..32581ccf5c397f1dd9765393236a73d5623f199e 100644 (file)
@@ -632,8 +632,8 @@ int checkZone(DNSSECKeeper &dk, UeberBackend &B, const std::string& zone)
 
   BOOST_FOREACH(const string& 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++;
     }
   }