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

Changed a global variable to a local to avoid an error from the strict

module.
This commit is contained in:
batrick
2009-08-15 14:57:52 +00:00
parent d5748b1d83
commit 5e362ac43d

View File

@@ -134,7 +134,7 @@ action = function(host, port)
all = http.pGet( host, port, combination.checkdir, nil, nil, all )
end
results = http.pipeline(host, port, all, nil)
local results = http.pipeline(host, port, all, nil)
for i, data in pairs( results ) do
@@ -166,7 +166,7 @@ action = function(host, port)
end
end
results = http.pipeline(host, port, all, nil)
local results = http.pipeline(host, port, all, nil)
for i, data in pairs( results ) do