From: Remi Gacogne Date: Tue, 25 Mar 2025 09:00:49 +0000 (+0100) Subject: dnsdist: Apply Miod's lua -> Lua suggestion X-Git-Tag: dnsdist-2.0.0-alpha2~113^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F15356%2Fhead;p=thirdparty%2Fpdns.git dnsdist: Apply Miod's lua -> Lua suggestion Co-authored-by: Miod Vallat --- diff --git a/pdns/dnsdistdist/dnsdist-configuration-yaml.cc b/pdns/dnsdistdist/dnsdist-configuration-yaml.cc index a707ec419a..77a6a5e6a2 100644 --- a/pdns/dnsdistdist/dnsdist-configuration-yaml.cc +++ b/pdns/dnsdistdist/dnsdist-configuration-yaml.cc @@ -148,7 +148,7 @@ static bool getLuaFunctionFromConfiguration(FuncType& destination, const ::rust: if (found) { return true; } - throw std::runtime_error("Unable to locate the Lua function named '" + std::string(functionName) + "', referenced by a lua directive in " + context + " context"); + throw std::runtime_error("Unable to locate the Lua function named '" + std::string(functionName) + "', referenced by a Lua directive in " + context + " context"); } if (!functionCode.empty()) { auto function = dnsdist::lua::getFunctionFromLuaCode(std::string(functionCode), context);