mirror of
https://github.com/nmap/nmap.git
synced 2025-12-09 22:21:29 +00:00
Removed another instance of the 'arg' table.
This commit is contained in:
@@ -67,8 +67,8 @@ end
|
|||||||
-- @param t The table.
|
-- @param t The table.
|
||||||
-- @param ... The elements to add to the row.
|
-- @param ... The elements to add to the row.
|
||||||
function addrow(t, ...)
|
function addrow(t, ...)
|
||||||
for i=1, arg['n'] do
|
for i=1, select("#", ...) do
|
||||||
add( t, i, tostring(arg[i]) )
|
add( t, i, tostring( ( select(i, ...)) ) )
|
||||||
end
|
end
|
||||||
nextrow( t )
|
nextrow( t )
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user