From 97b4adab005e75301c579ed834cf10dccc3b1de9 Mon Sep 17 00:00:00 2001 From: Miod Vallat Date: Thu, 12 Jun 2025 14:29:55 +0200 Subject: [PATCH] End sentences with dots, not commas. --- pdns/pdnsutil.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pdns/pdnsutil.cc b/pdns/pdnsutil.cc index 6c51069658..845a43a591 100644 --- a/pdns/pdnsutil.cc +++ b/pdns/pdnsutil.cc @@ -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; } -- 2.47.2