Allow lua patterns in tn3270.find, as expected by vtam-enum

This commit is contained in:
dmiller 2017-08-15 22:21:15 +00:00
parent 3218c0f216
commit 6a60648f21

View file

@ -1206,7 +1206,7 @@ Telnet = {
end
--local buff = self:get_screen()
stdnse.debug(3, "Looking for: "..str)
local i, j = string.find(buff, str, 1, true)
local i, j = string.find(buff, str)
if i == nil then
stdnse.debug(3, "Couldn't find: "..str)
return false