]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
typo 10740/head
authorOtto Moerbeek <otto.moerbeek@open-xchange.com>
Tue, 21 Sep 2021 10:20:55 +0000 (12:20 +0200)
committerGitHub <noreply@github.com>
Tue, 21 Sep 2021 10:20:55 +0000 (12:20 +0200)
Co-authored-by: Remi Gacogne <github@coredump.fr>
pdns/rec-lua-conf.cc

index bb315ed7b1c58ddd9c00b507b0ff98a991a01f5b..3f86fcd0be24d5ba06f3c13d3109708bd2127344 100644 (file)
@@ -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();