Skip to content

Commit d9b3ecb

Browse files
committed
pdnssec: log missing glue as warning
1 parent 561373e commit d9b3ecb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pdns/pdnssec.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -632,8 +632,8 @@ int checkZone(DNSSECKeeper &dk, UeberBackend &B, const std::string& zone)
632632

633633
BOOST_FOREACH(const string& qname, checkglue) {
634634
if (!glue.count(qname)) {
635-
cerr<<"[Error] Missing glue for '"<<qname<<"' in zone '"<<zone<<"'"<<endl;
636-
numerrors++;
635+
cerr<<"[Warning] Missing glue for '"<<qname<<"' in zone '"<<zone<<"'"<<endl;
636+
numwarnings++;
637637
}
638638
}
639639

0 commit comments

Comments
 (0)