From: tcely Date: Thu, 3 Aug 2017 07:27:45 +0000 (-0400) Subject: The syntax was wrong for this TXT entry. X-Git-Tag: dnsdist-1.4.0-rc3~42^2~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5b7fe0289ee2785fe146279e185ea1984af67452;p=thirdparty%2Fpdns.git The syntax was wrong for this TXT entry. I had thought maybe the server would parse that format. It looks like it was left up to the zone file parser instead. --- diff --git a/modules/luabackend/test/powerdns-luabackend.lua b/modules/luabackend/test/powerdns-luabackend.lua index 36d3877f2d..d6e0b0ec74 100644 --- a/modules/luabackend/test/powerdns-luabackend.lua +++ b/modules/luabackend/test/powerdns-luabackend.lua @@ -287,9 +287,7 @@ domains[origin].records["external-mail."..origin] = { {qtype = "MX", ttl = ttl, content = "25 server1.test.com."}, } domains[origin].records["text."..origin] = { - {qtype = "TXT", ttl = ttl, content = [=[( - "Hi, this is some text" - )]=]}, + {qtype = "TXT", ttl = ttl, content = "Hi, this is some text"}, } domains[origin].records["multitext."..origin] = { {qtype = "TXT", ttl = ttl, content = [=["text part one" "text part two" "text part three"]=]},