]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
pdnssec: log missing glue as warning 2568/head
authorKees Monshouwer <mind04@monshouwer.org>
Mon, 1 Jun 2015 08:24:09 +0000 (10:24 +0200)
committermind04 <mind04@monshouwer.org>
Fri, 5 Jun 2015 12:58:32 +0000 (14:58 +0200)
pdns/pdnssec.cc

index 022c56c42debeb1de3d7deeeae8c07f9630fba22..26d4476e82ec3b13780bb02dba819c242660246a 100644 (file)
@@ -576,8 +576,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++;
     }
   }