From: Winfried Angele Date: Wed, 12 Apr 2023 08:30:45 +0000 (+0200) Subject: Undo an accidentally change X-Git-Tag: auth-4.8.0-beta1~4^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d85c923f52d1e2140f3ecf5467b513c7b54a856e;p=thirdparty%2Fpdns.git Undo an accidentally change 'disableZeroScope' was accidentally changed to 'disableZeroScoping' in commit 597a91a3cec373ebd4172d167a0f9c7500781027 --- diff --git a/pdns/dnsdist-lua.cc b/pdns/dnsdist-lua.cc index 6e3252f809..9efa59dd28 100644 --- a/pdns/dnsdist-lua.cc +++ b/pdns/dnsdist-lua.cc @@ -498,7 +498,7 @@ static void setupLuaConfig(LuaContext& luaCtx, bool client, bool configCheck) getOptionalValue(vars, "useClientSubnet", config.useECS); getOptionalValue(vars, "useProxyProtocol", config.useProxyProtocol); - getOptionalValue(vars, "disableZeroScoping", config.disableZeroScope); + getOptionalValue(vars, "disableZeroScope", config.disableZeroScope); getOptionalValue(vars, "ipBindAddrNoPort", config.ipBindAddrNoPort); getOptionalIntegerValue("newServer", vars, "addXPF", config.xpfRRCode);