1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-03 05:09:14 +00:00

Improve script output by removal of the empty line which follows two fields on

the same line.
This commit is contained in:
jah
2015-02-10 17:26:12 +00:00
parent 498f0c3371
commit a26b28b635

View File

@@ -1304,15 +1304,19 @@ function format_data_for_output( data )
elseif type( field_name ) == "table" then
output[#output+1] = "\n"
local first_in_line = true
for _, field_name_sameline in ipairs( field_name ) do
if type( field_name_sameline ) == "string" and data[object_name][field_name_sameline] then
if first_in_line then
first_in_line = false
output[#output+1] = "\n"
else
output[#output+1] = " " -- the space between items on a line
end
output[#output+1] = field_name_sameline
output[#output+1] = ": "
output[#output+1] = data[object_name][field_name_sameline]
output[#output+1] = " "
end
end