From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Wed, 19 Nov 2025 17:03:10 +0000 (-0500) Subject: spelling: expression X-Git-Tag: rec-5.4.0-alpha1~61^2~61 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=49859943699ea163edc818f4b5a23ed00030aa22;p=thirdparty%2Fpdns.git spelling: expression Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- diff --git a/pdns/recursordist/rec-system-resolve.cc b/pdns/recursordist/rec-system-resolve.cc index 99ef7d1285..3f43b98eec 100644 --- a/pdns/recursordist/rec-system-resolve.cc +++ b/pdns/recursordist/rec-system-resolve.cc @@ -253,7 +253,7 @@ void pdns::RecResolve::Refresher::refreshLoop() while (!stop) { const time_t startTime = time(nullptr); time_t wakeTime = startTime; - // The expresion wakeTime - startTime is equal to the total amount of time slept + // The expression wakeTime - startTime is equal to the total amount of time slept while (wakeTime - startTime < d_interval) { std::unique_lock lock(mutex); time_t remaining = d_interval - (wakeTime - startTime);