1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-10 09:49:05 +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 @@ Retrieves a list of all eDirectory users from the Novell NetWare Core Protocol (
--@output
-- PORT STATE SERVICE REASON
-- 524/tcp open ncp syn-ack
-- | ncp-enum-users:
-- | ncp-enum-users:
-- | CN=admin.O=cqure
-- | CN=cawi.OU=finance.O=cqure
-- | CN=linux-l84tadmin.O=cqure
@@ -42,9 +42,9 @@ action = function(host, port)
status, resp = helper:search("[Root]", "User", "*")
if ( not(status) ) then return stdnse.format_output(false, resp) end
local output = {}
for _, entry in ipairs(resp) do
table.insert(output, entry.name)
end