From 99cc5102c383238797dac5ffd87286b65bf3c7ee Mon Sep 17 00:00:00 2001 From: dmiller Date: Tue, 23 Sep 2014 13:41:58 +0000 Subject: [PATCH] Correct a typo: tables don't work like strings --- nselib/http.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nselib/http.lua b/nselib/http.lua index ded0a12f6..1f1a12380 100644 --- a/nselib/http.lua +++ b/nselib/http.lua @@ -1893,7 +1893,7 @@ function tag_pattern(tag, endtag) else patt[#patt+1] = "%f[%s/>].->" end - return patt:concat() + return table.concat(patt) end ---