]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
spelling: macos
authorJosh Soref <2119212+jsoref@users.noreply.github.com>
Wed, 19 Nov 2025 17:32:08 +0000 (12:32 -0500)
committerJosh Soref <2119212+jsoref@users.noreply.github.com>
Thu, 20 Nov 2025 12:31:10 +0000 (07:31 -0500)
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
docs/changelog/pre-4.0.rst
pdns/logger.cc

index e394b6e239f4991b9a6b035ddce5045fb3eb9543..81274e9273703c4128614c33aed1f4c4d53431ef 100644 (file)
@@ -2233,7 +2233,7 @@ Improvements
    closing `ticket 423 <https://github.com/PowerDNS/pdns/issues/423>`__
    (which also contained the patch). Regression test updates that flow
    from this in `commit e80e21951a648acd549146a0b9a42cf169698deb <https://github.com/PowerDNS/pdns/commit/e80e21951a648acd549146a0b9a42cf169698deb>`__.
--  Fix compilation on OSX. `commit 2fcbee807ace6e0f90b88157ddc431deec520baf <https://github.com/PowerDNS/pdns/commit/2fcbee807ace6e0f90b88157ddc431deec520baf>`__.
+-  Fix compilation on macOS. `commit 2fcbee807ace6e0f90b88157ddc431deec520baf <https://github.com/PowerDNS/pdns/commit/2fcbee807ace6e0f90b88157ddc431deec520baf>`__.
 -  Fix pdnssec crash when asked to do DNSSEC without a DNSSEC capable
    backend. Code in `commit f0c4b9d5d777aca598fac5625ec07d815df57ea2 <https://github.com/PowerDNS/pdns/commit/f0c4b9d5d777aca598fac5625ec07d815df57ea2>`__.
 -  If PowerDNS was not configured to operate as a DNS master, it would
index 483a4d0089e6603a2a1da7e9265daf248e7633ea..efbea8130b5700a39baf401c8cf5b397e2adafd1 100644 (file)
@@ -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.