From 161629a86e4a12a0ceb4ccaa29f10afe7f7f454e Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Wed, 19 Nov 2025 12:32:08 -0500 Subject: [PATCH] spelling: macos Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- docs/changelog/pre-4.0.rst | 2 +- pdns/logger.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/changelog/pre-4.0.rst b/docs/changelog/pre-4.0.rst index e394b6e239..81274e9273 100644 --- a/docs/changelog/pre-4.0.rst +++ b/docs/changelog/pre-4.0.rst @@ -2233,7 +2233,7 @@ Improvements closing `ticket 423 `__ (which also contained the patch). Regression test updates that flow from this in `commit e80e21951a648acd549146a0b9a42cf169698deb `__. -- Fix compilation on OSX. `commit 2fcbee807ace6e0f90b88157ddc431deec520baf `__. +- Fix compilation on macOS. `commit 2fcbee807ace6e0f90b88157ddc431deec520baf `__. - Fix pdnssec crash when asked to do DNSSEC without a DNSSEC capable backend. Code in `commit f0c4b9d5d777aca598fac5625ec07d815df57ea2 `__. - If PowerDNS was not configured to operate as a DNS master, it would diff --git a/pdns/logger.cc b/pdns/logger.cc index 483a4d0089..efbea8130b 100644 --- a/pdns/logger.cc +++ b/pdns/logger.cc @@ -104,7 +104,7 @@ void Logger::log(const string& msg, Urgency u) noexcept } static std::mutex mutex; - auto lock = std::scoped_lock(mutex); // the C++-2011 spec says we need this, and OSX actually does + auto lock = std::scoped_lock(mutex); // the C++-2011 spec says we need this, and macOS actually does // To avoid issuing multiple syscalls, we write the complete line to clog with a single << call. // For that we need a buffer allocated, we might want to use writev(2) one day to avoid that. -- 2.47.3