From 5d45715e7eb4c1b443ec47b588655bece44cea45 Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Tue, 25 Mar 2025 10:00:49 +0100 Subject: [PATCH] dnsdist: Apply Miod's lua -> Lua suggestion Co-authored-by: Miod Vallat --- pdns/dnsdistdist/dnsdist-configuration-yaml.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.47.2