]> granicus.if.org Git - pdns/commitdiff
Make pdnsutil check-zone more consistent.
authorFrank Louwers <frank@louwers.be>
Fri, 8 Mar 2019 12:47:18 +0000 (13:47 +0100)
committerFrank Louwers <frank@louwers.be>
Fri, 8 Mar 2019 12:47:18 +0000 (13:47 +0100)
An error is [Error]. Not [error].

pdns/pdnsutil.cc

index 8b1e8168920ed7a70d812f99f9d1242879104123..d7e40a4587ba51b3d9aa353671c81d8b6fabc69a 100644 (file)
@@ -241,7 +241,7 @@ int checkZone(DNSSECKeeper &dk, UeberBackend &B, const DNSName& zone, const vect
 {
   SOAData sd;
   if(!B.getSOAUncached(zone, sd)) {
-    cout<<"[error] No SOA record present, or active, in zone '"<<zone<<"'"<<endl;
+    cout<<"[Error] No SOA record present, or active, in zone '"<<zone<<"'"<<endl;
     cout<<"Checked 0 records of '"<<zone<<"', 1 errors, 0 warnings."<<endl;
     return 1;
   }