Fix a bug in dns-fuzz, missing table.concat

This commit is contained in:
dmiller 2016-08-20 04:53:35 +00:00
parent bab09913a8
commit b5656da197

View file

@ -128,7 +128,7 @@ function makeHost (compressed)
name[#name+1] = "\x00"
end
return name
return table.concat(name)
end
---