1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 04:31:29 +00:00

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
---