1
0
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:
batrick
2009-02-02 07:58:10 +00:00
parent a8ff6858b4
commit 06a18132b0

View File

@@ -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