From: Otto Moerbeek Date: Tue, 21 Sep 2021 10:20:55 +0000 (+0200) Subject: typo X-Git-Tag: dnsdist-1.7.0-alpha1~1^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F10740%2Fhead;p=thirdparty%2Fpdns.git typo Co-authored-by: Remi Gacogne --- diff --git a/pdns/rec-lua-conf.cc b/pdns/rec-lua-conf.cc index bb315ed7b1..3f86fcd0be 100644 --- a/pdns/rec-lua-conf.cc +++ b/pdns/rec-lua-conf.cc @@ -626,7 +626,7 @@ void startLuaConfigDelayedThreads(const luaConfigDelayedThreads& delayedThreads, { for (const auto& rpzPrimary : delayedThreads.rpzPrimaryThreads) { try { - // The get calls all return a value object here. That is esential, since we want copies so that RPZIXFRTracker gets values + // The get calls all return a value object here. That is essential, since we want copies so that RPZIXFRTracker gets values // with the proper lifetime. std::thread t(RPZIXFRTracker, std::get<0>(rpzPrimary), std::get<1>(rpzPrimary), std::get<2>(rpzPrimary), std::get<3>(rpzPrimary), std::get<4>(rpzPrimary), std::get<5>(rpzPrimary), std::get<6>(rpzPrimary) * 1024 * 1024, std::get<7>(rpzPrimary), std::get<8>(rpzPrimary), std::get<9>(rpzPrimary), std::get<10>(rpzPrimary), std::get<11>(rpzPrimary), generation); t.detach();