1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-04 13:49:03 +00:00

Remove the "cols" parameter from calls to tab.new.

This commit is contained in:
david
2010-12-30 21:08:18 +00:00
parent 396481c1b8
commit 357c15a165
5 changed files with 7 additions and 7 deletions

View File

@@ -84,7 +84,7 @@ local function report(nfs, tables)
end
if nfs.version == 2 then
outtab = tab.new(6)
outtab = tab.new()
tab.nextrow(outtab)
tab.addrow(outtab, tab_filesys, tab_size, tab_used,
tab_avail, tab_use, tab_bs)
@@ -94,7 +94,7 @@ local function report(nfs, tables)
t.used, t.available, t.use, t.bsize)
end
elseif nfs.version == 3 then
outtab = tab.new(7)
outtab = tab.new()
tab.nextrow(outtab)
tab.addrow(outtab, tab_filesys, tab_size, tab_used,
tab_avail, tab_use, tab_maxfs, tab_linkmax)