1
0
mirror of https://github.com/nmap/nmap.git synced 2026-02-05 21:16:33 +00:00

Correct a typo: tables don't work like strings

This commit is contained in:
dmiller
2014-09-23 13:41:58 +00:00
parent e42409be93
commit 99cc5102c3

View File

@@ -1893,7 +1893,7 @@ function tag_pattern(tag, endtag)
else
patt[#patt+1] = "%f[%s/>].->"
end
return patt:concat()
return table.concat(patt)
end
---