From: Miod Vallat Date: Thu, 12 Jun 2025 12:29:55 +0000 (+0200) Subject: End sentences with dots, not commas. X-Git-Tag: dnsdist-2.0.0-beta1~33^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=97b4adab005e75301c579ed834cf10dccc3b1de9;p=thirdparty%2Fpdns.git End sentences with dots, not commas. --- 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; }