1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-27 09:59:04 +00:00

Use a more straightforward return style in script rules. Instead of

if cond then
		return true
	else
		return false
	end

just do

	return cond
This commit is contained in:
david
2008-11-18 16:59:09 +00:00
parent f4b970f889
commit 85deff9ede
16 changed files with 21 additions and 127 deletions

View File

@@ -53,15 +53,7 @@ require 'smb'
require 'stdnse'
hostrule = function(host)
local port = smb.get_port(host)
if(port == nil) then
return false
else
return true
end
return smb.get_port(host) ~= nil
end
action = function(host)