From 4209ec0e82f6d8b372a6b1283007b158359a6aea Mon Sep 17 00:00:00 2001 From: dmiller Date: Fri, 18 Oct 2013 18:47:01 +0000 Subject: [PATCH] Remove redundant verbosity check --- scripts/ntp-info.nse | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/ntp-info.nse b/scripts/ntp-info.nse index d34b15dc5..d5dd61a17 100644 --- a/scripts/ntp-info.nse +++ b/scripts/ntp-info.nse @@ -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