1
0
mirror of https://github.com/nmap/nmap.git synced 2026-02-14 17:36:33 +00:00

Remove redundant 'proto=port.protocol' from comm.lua calls

This commit is contained in:
dmiller
2015-02-05 04:17:58 +00:00
parent 24f88f9b83
commit 40652f215b
7 changed files with 10 additions and 12 deletions

View File

@@ -33,5 +33,5 @@ action = function(host, port)
local try = nmap.new_try()
return try(comm.exchange(host, port, "\r\n",
{lines=100, proto=port.protocol, timeout=5000}))
{lines=100, timeout=5000}))
end