From: Remi Gacogne Date: Thu, 2 Feb 2023 09:40:33 +0000 (+0100) Subject: dnsdist: Better wording for the 'no cache' case X-Git-Tag: dnsdist-1.8.0-rc1~34^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F12500%2Fhead;p=thirdparty%2Fpdns.git dnsdist: Better wording for the 'no cache' case --- diff --git a/pdns/dnsdist-web.cc b/pdns/dnsdist-web.cc index 1ca124034d..267c05561d 100644 --- a/pdns/dnsdist-web.cc +++ b/pdns/dnsdist-web.cc @@ -1540,7 +1540,7 @@ static void handleCacheManagement(const YaHTTP::Request& req, YaHTTP::Response& resp.status = 404; Json::object obj{ { "status", "not found" }, - { "error", "there is no cache associated to the requested pool" }, + { "error", "there is no cache associated with the requested pool" }, }; resp.body = Json(obj).dump(); return;