]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
End sentences with dots, not commas. 15663/head
authorMiod Vallat <miod.vallat@powerdns.com>
Thu, 12 Jun 2025 12:29:55 +0000 (14:29 +0200)
committerMiod Vallat <miod.vallat@powerdns.com>
Thu, 12 Jun 2025 12:29:55 +0000 (14:29 +0200)
pdns/pdnsutil.cc

index 6c51069658c8e70aefcdb15e94355c86742b6ef1..845a43a591824b6cd608bc3a8317d08d9ad5619b 100644 (file)
@@ -1147,7 +1147,7 @@ static int listZone(const ZoneName &zone) {
     return EXIT_FAILURE;
   }
   if ((di.backend->getCapabilities() & DNSBackend::CAP_LIST) == 0) {
-    cerr << "Backend for zone '" << zone << "' does not support listing its contents," << endl;
+    cerr << "Backend for zone '" << zone << "' does not support listing its contents." << endl;
     return EXIT_FAILURE;
   }
 
@@ -1318,7 +1318,7 @@ static int editZone(const ZoneName &zone, const PDNSColors& col) {
     return EXIT_FAILURE;
   }
   if ((di.backend->getCapabilities() & DNSBackend::CAP_LIST) == 0) {
-    cerr << "Backend for zone '" << zone << "' does not support listing its contents," << endl;
+    cerr << "Backend for zone '" << zone << "' does not support listing its contents." << endl;
     return EXIT_FAILURE;
   }