From: tcely Date: Thu, 24 May 2018 15:25:14 +0000 (-0400) Subject: Added a missing comma in a comment. X-Git-Tag: dnsdist-1.4.0-rc3~42^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=41f92c961bb035dacc2e221267e8baafcf6ea7bc;p=thirdparty%2Fpdns.git Added a missing comma in a comment. It is safer to leave the comma in place. When copying / pasting lines, you might end up with syntax problems without it. --- diff --git a/modules/luabackend/test/powerdns-luabackend.lua b/modules/luabackend/test/powerdns-luabackend.lua index ec135b0608..fa5342be53 100644 --- a/modules/luabackend/test/powerdns-luabackend.lua +++ b/modules/luabackend/test/powerdns-luabackend.lua @@ -349,7 +349,7 @@ local hnfmt = "host-%d.%s" local ipfmt = "192.168.1.%d" for n = 2, 19999, 1 do domains[origin].records[hnfmt:format(n, origin)] = { - {qtype = "A", ttl = ttl, content = ipfmt:format( n % 256)} + {qtype = "A", ttl = ttl, content = ipfmt:format( n % 256)}, } end --]=]