From: Remi Gacogne Date: Mon, 4 Jul 2016 08:09:37 +0000 (+0200) Subject: dnsdist: Fix typo (NOTIMPL->NOTIMP) in dnsdistconf.lua X-Git-Tag: rec-4.0.0~24 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ce71f790ea990e05f5e40236c3b16d327c618b44;p=thirdparty%2Fpdns.git dnsdist: Fix typo (NOTIMPL->NOTIMP) in dnsdistconf.lua --- diff --git a/pdns/dnsdistconf.lua b/pdns/dnsdistconf.lua index 5b9bedd016..63fa897f62 100644 --- a/pdns/dnsdistconf.lua +++ b/pdns/dnsdistconf.lua @@ -166,10 +166,10 @@ end -- addAction(AndRule({QTypeRule("ANY"), TCPRule(true)}), TCAction()) -- return 'not implemented' for qtype != A over UDP --- addAction(AndRule({NotRule(QTypeRule("A")), TCPRule(false)}), RCodeAction(dnsdist.NOTIMPL)) +-- addAction(AndRule({NotRule(QTypeRule("A")), TCPRule(false)}), RCodeAction(dnsdist.NOTIMP)) -- return 'not implemented' for qtype == A OR received over UDP --- addAction(OrRule({QTypeRule("A"), TCPRule(false)}), RCodeAction(dnsdist.NOTIMPL)) +-- addAction(OrRule({QTypeRule("A"), TCPRule(false)}), RCodeAction(dnsdist.NOTIMP)) -- log all queries to a 'dndist.log' file, in text-mode (not binary) -- addAction(AllRule(), LogAction("dnsdist.log", false))