1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-28 17:19:05 +00:00

Remove a \r\r that could be printed by showSMTPversion.nse.

This commit is contained in:
david
2008-09-12 21:39:48 +00:00
parent 0d372367c0
commit f35d3e9440

View File

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