1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-23 16:09:02 +00:00

Fixes bad indexed global

This commit is contained in:
paulino
2016-03-26 19:52:37 +00:00
parent 377b52c112
commit 9b53acb1c0

View File

@@ -107,7 +107,7 @@ local function format_output(results)
table.sort(ips)
for i, ip in ipairs(ips) do
record = results[ip]
local record = results[ip]
xmlout[i] = record
tab.addrow(output, " IP: " .. record.address, "MAC: " .. record.mac, "IFACE: " .. record.iface)
end