From: Peter van Dijk Date: Tue, 3 Jun 2025 11:38:59 +0000 (+0200) Subject: fix missing space in error message X-Git-Tag: dnsdist-2.1.0-alpha0~1^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=43f43ebc05bae2c119a9d852ed2f206aa25bf53e;p=thirdparty%2Fpdns.git fix missing space in error message --- diff --git a/pdns/ws-auth.cc b/pdns/ws-auth.cc index 90c6745579..fdd2ad9541 100644 --- a/pdns/ws-auth.cc +++ b/pdns/ws-auth.cc @@ -2709,7 +2709,7 @@ static void apiServerViewsPOST(HttpRequest* req, HttpResponse* resp) ZoneName zonename = apiNameToZoneName(stringFromJson(document, "name")); if (!backend.getDomainInfo(zonename, domainInfo)) { - throw ApiException("Zone " + zonename.toStringFull() + "does not exist"); + throw ApiException("Zone " + zonename.toStringFull() + " does not exist"); } std::string view{req->parameters["view"]};