mirror of
https://github.com/nmap/nmap.git
synced 2025-12-09 14:11: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 ... The elements to add to the row.
|
||||
function addrow(t, ...)
|
||||
for i=1, arg['n'] do
|
||||
add( t, i, tostring(arg[i]) )
|
||||
for i=1, select("#", ...) do
|
||||
add( t, i, tostring( ( select(i, ...)) ) )
|
||||
end
|
||||
nextrow( t )
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user