1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-06 14:39:03 +00:00

Remove trailing whitespace in lua files

Whitespace is not significant, so this should not be a problem.
https://secwiki.org/w/Nmap/Code_Standards
This commit is contained in:
dmiller
2014-01-23 21:51:58 +00:00
parent 86ac3c0a19
commit 620f9fdb34
499 changed files with 11134 additions and 11134 deletions

View File

@@ -12,7 +12,7 @@ Shows NFS exports, like the <code>showmount -e</code> command.
-- @output
-- PORT STATE SERVICE
-- 111/tcp open rpcbind
-- | nfs-showmount:
-- | nfs-showmount:
-- | /home/storage/backup 10.46.200.0/255.255.255.0
-- |_ /home 1.2.3.4/255.255.255.255 10.46.200.0/255.255.255.0
--
@@ -70,9 +70,9 @@ end
action = function(host, port)
local status, mounts, proto
local status, mounts, proto
local result = {}
if port.service == "mountd" then
status, mounts = get_exports( host, port )
else
@@ -88,7 +88,7 @@ action = function(host, port)
entry = entry .. " " .. stdnse.strjoin(" ", v)
table.insert( result, entry )
end
return stdnse.format_output( true, result )
end