Applied the fix for a script returning more than one result in showSMTPVersion.nse

See Jah's post: http://seclists.org/nmap-dev/2008/q3/0293.html
This commit is contained in:
batrick 2008-08-10 00:39:36 +00:00
parent ce9d484281
commit bbae5a7845

View file

@ -20,6 +20,6 @@ action = function(host, port)
return
end
return string.gsub(result, "\n", "")
return (string.gsub(result, "\n", ""))
end