]> granicus.if.org Git - pdns/commitdiff
add dots to qnames in policy.lua
authorKees Monshouwer <mind04@monshouwer.org>
Tue, 28 Jul 2015 12:43:38 +0000 (14:43 +0200)
committermind04 <mind04@monshouwer.org>
Tue, 28 Jul 2015 12:43:38 +0000 (14:43 +0200)
regression-tests.nobackend/lua-policy/policy.lua

index 8f4b9d58c84f42cc0445d2056d0cc3fc0c499a94..c9a8a1d14b557dd2af463a5e29c6eb271b0055ee 100644 (file)
@@ -3,8 +3,8 @@ io.flush()
 function police (req, resp, isTcp)
        qname, qtype = req:getQuestion()
 
-       if qname == 'drop.minimal.com' then print 'dropping!' io.flush() return pdns.DROP end
-       if qname == 'truncate.minimal.com' then print 'truncating!' io.flush() return pdns.TRUNCATE end
+       if qname == 'drop.minimal.com.' then print 'dropping!' io.flush() return pdns.DROP end
+       if qname == 'truncate.minimal.com.' then print 'truncating!' io.flush() return pdns.TRUNCATE end
 
        return pdns.PASS
 end