]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
dnsdist: Fix typo (NOTIMPL->NOTIMP) in dnsdistconf.lua
authorRemi Gacogne <remi.gacogne@powerdns.com>
Mon, 4 Jul 2016 08:09:37 +0000 (10:09 +0200)
committerRemi Gacogne <remi.gacogne@powerdns.com>
Mon, 4 Jul 2016 08:09:37 +0000 (10:09 +0200)
pdns/dnsdistconf.lua

index 5b9bedd016cceb6c59ceb6cacea8fa981040a7f2..63fa897f626372268de13c5521244ac2e2200969 100644 (file)
@@ -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))