1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-24 08:29:04 +00:00

Remove redundant "Daytime: " from the output of daytime.nse. It looked like

|_ daytime: Daytime: Mon Jan 19 17:43:18 MST 2009
This commit is contained in:
david
2009-01-20 00:42:32 +00:00
parent 1f76d5cc0b
commit 0844aa18af

View File

@@ -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