]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Added some missing commas.
authortcely <tcely@users.noreply.github.com>
Thu, 3 Aug 2017 09:32:28 +0000 (05:32 -0400)
committertcely <tcely@users.noreply.github.com>
Thu, 24 May 2018 17:33:47 +0000 (13:33 -0400)
modules/luabackend/test/powerdns-luabackend.lua

index 9540183cc873ad4b49fd87195900c4287aa85ed9..ec135b0608e48d0cdd416c9c14394e8ba8b7814d 100644 (file)
@@ -335,11 +335,11 @@ domains[origin].records["toomuchinfo-b."..origin] = tab
 tab = nil
 
 domains[origin].records["host-0."..origin] = {
-    {qtype = "A", ttl = ttl, content = "192.168.1.0"}
+    {qtype = "A", ttl = ttl, content = "192.168.1.0"},
     {qtype = "EUI48", ttl = ttl, content = "00-50-56-9b-00-e7"},
 }
 domains[origin].records["host-1."..origin] = {
-    {qtype = "A", ttl = ttl, content = "192.168.1.1"}
+    {qtype = "A", ttl = ttl, content = "192.168.1.1"},
     {qtype = "EUI48", ttl = ttl, content = "00-50-56-9b-00-e7-7e-57"},
 }
 --[=[
@@ -443,7 +443,7 @@ function list(qname, domainid)
             for n = 2, 19999, 1 do
                 r[1 + #r] = {
                     qname = hnfmt:format(n, q_name),
-                    name = hnfmt:format(n, q_name)
+                    name = hnfmt:format(n, q_name),
                     qtype = "A",
                     ttl = 120,
                     content = ipfmt:format(n % 256),