Fix incorrect (broken) return value in p2p-conficker.nse. Spotted by

Daniel Miller.
This commit is contained in:
david 2011-07-18 20:40:47 +00:00
parent f57b87a010
commit bbf254d90e

View file

@ -621,6 +621,6 @@ action = function(host)
table.insert(response, string.format("%d/%d checks are positive: Host is likely INFECTED", count, checks))
end
return true, stdnse.format_output(true, response)
return stdnse.format_output(true, response)
end