mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 06:40:48 +00:00
Changed a global variable to a local to avoid an error from the strict
module.
This commit is contained in:
parent
d5748b1d83
commit
5e362ac43d
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue