1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-31 20:09:02 +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

@@ -179,7 +179,7 @@ local function nfs_filesystem_info(nfs, mount, filesystem)
if nfs_comm == nil then
rpc.Helper.UnmountPath(mnt_comm, mount)
return false, status
end
end
nfs.version = nfs_comm.version
@@ -195,8 +195,8 @@ local function nfs_filesystem_info(nfs, mount, filesystem)
elseif nfs_comm.version == 3 then
status, res = nfsobj:FsStat(nfs_comm, fhandle)
end
if status then
if status then
status, res = table_fsstat(nfs, mount, res)
if status then
for k, v in pairs(res) do
@@ -259,7 +259,7 @@ mainaction = function(host)
string.format("%s: %s", v.name, err))
end
end
return stdnse.format_output(true, report(nfs_info, fs_info))
end