From bbf254d90e2aec334c1eeffe19949a320497bad0 Mon Sep 17 00:00:00 2001 From: david Date: Mon, 18 Jul 2011 20:40:47 +0000 Subject: [PATCH] Fix incorrect (broken) return value in p2p-conficker.nse. Spotted by Daniel Miller. --- scripts/p2p-conficker.nse | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/p2p-conficker.nse b/scripts/p2p-conficker.nse index 289b8b17a..3a1a0b038 100644 --- a/scripts/p2p-conficker.nse +++ b/scripts/p2p-conficker.nse @@ -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