From: Pavel Odintsov Date: Fri, 31 Aug 2018 15:09:50 +0000 (+0100) Subject: Renamed dnsdist_pools_servers to singular form dnsdist_pool_servers X-Git-Tag: dnsdist-1.3.3~128^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3004c35beac949657b83a0115a819155272ef80a;p=thirdparty%2Fpdns.git Renamed dnsdist_pools_servers to singular form dnsdist_pool_servers --- diff --git a/pdns/dnsdist-web.cc b/pdns/dnsdist-web.cc index 433374d4d5..324479fc62 100644 --- a/pdns/dnsdist-web.cc +++ b/pdns/dnsdist-web.cc @@ -471,7 +471,7 @@ static void connectionThread(int sock, ComboAddress remote, string password, str } const string label = "{pool=\"" + poolName + "\"}"; const std::shared_ptr pool = entry.second; - output << "dnsdist_pools_servers" << label << " " << pool->countServers(false) << "\n"; + output << "dnsdist_pool_servers" << label << " " << pool->countServers(false) << "\n"; if (pool->packetCache != nullptr) { const auto& cache = pool->packetCache;