From 0844aa18afccbf014fc4a4148ec9441c6cac4a53 Mon Sep 17 00:00:00 2001 From: david Date: Tue, 20 Jan 2009 00:42:32 +0000 Subject: [PATCH] Remove redundant "Daytime: " from the output of daytime.nse. It looked like |_ daytime: Daytime: Mon Jan 19 17:43:18 MST 2009 --- scripts/daytime.nse | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/daytime.nse b/scripts/daytime.nse index 4c468668d..a6b95af04 100644 --- a/scripts/daytime.nse +++ b/scripts/daytime.nse @@ -17,6 +17,6 @@ action = function(host, port) local status, result = comm.exchange(host, port, "dummy", {lines=1, proto=port.proto}) if status then - return "Daytime: " .. result + return result end end