1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-11 00:49:02 +00:00

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