1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-31 18:49:08 +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

@@ -7,7 +7,7 @@ Attempts to extract system information from the UPnP service by sending a multic
---
-- @output
-- | broadcast-upnp-info:
-- | broadcast-upnp-info:
-- | 1.2.3.50
-- | Debian/4.0 DLNADOC/1.50 UPnP/1.0 MiniDLNA/1.0
-- | Location: http://1.2.3.50:8200/rootDesc.xml
@@ -37,13 +37,13 @@ categories = {"broadcast", "safe"}
prerule = function() return true end
---
-- Sends UPnP discovery packet to host,
-- Sends UPnP discovery packet to host,
-- and extracts service information from results
action = function()
local helper = upnp.Helper:new()
helper:setMulticast(true)
local status, result = helper:queryServices()
if ( status ) then
return stdnse.format_output(true, result)
end