1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-27 00:29:03 +00:00

Remove redundant verbosity check

This commit is contained in:
dmiller
2013-10-18 18:47:01 +00:00
parent 507f0bc3ee
commit 4209ec0e82

View File

@@ -117,9 +117,7 @@ action = function(host, port)
-- Backslash escapes should be interpreted inside strings and commas should
-- be allowed inside them.
for k, q, v in string.gmatch(data, "%s*(%w+)=(\"?)([^,\"\r\n]*)%2,?") do
if DEFAULT_FIELDS[k] or nmap.verbosity() then
output[k] = v
end
output[k] = v
end
end