From: Otto Moerbeek Date: Mon, 24 Mar 2025 14:12:26 +0000 (+0100) Subject: auth: fix log string in case there are notifies needed X-Git-Tag: dnsdist-2.0.0-alpha2~121^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F15353%2Fhead;p=thirdparty%2Fpdns.git auth: fix log string in case there are notifies needed --- diff --git a/pdns/auth-primarycommunicator.cc b/pdns/auth-primarycommunicator.cc index 1b9ff3b3a4..82314c3cd8 100644 --- a/pdns/auth-primarycommunicator.cc +++ b/pdns/auth-primarycommunicator.cc @@ -198,7 +198,7 @@ void CommunicatorClass::primaryUpdateCheck(PacketHandler* P) g_log << Logger::Info << "no primary or producer domains need notifications" << endl; } else { - g_log << Logger::Info << cmdomains.size() << " domain" << addS(cmdomains.size()) << " for which we are primary or consumer need" << addS(cmdomains.size()) << " notifications" << endl; + g_log << Logger::Info << cmdomains.size() << " domain" << addS(cmdomains.size()) << " for which we are primary or producer need" << addS(cmdomains.size()) << " notifications" << endl; } for (auto& di : cmdomains) {