From 0706dc1b98702b15d26d2cf6328963f778c664fa Mon Sep 17 00:00:00 2001 From: henri Date: Mon, 16 May 2011 08:44:29 +0000 Subject: [PATCH] Removed trailing semicolons to keep style consistent --- scripts/firewalk.nse | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/firewalk.nse b/scripts/firewalk.nse index c0dd27d95..a295335af 100644 --- a/scripts/firewalk.nse +++ b/scripts/firewalk.nse @@ -398,11 +398,11 @@ end --- host rule, check for requirements before to launch the script hostrule = function(host) if not nmap.is_privileged() then - nmap.registry[SCRIPT_NAME] = nmap.registry[SCRIPT_NAME] or {}; + nmap.registry[SCRIPT_NAME] = nmap.registry[SCRIPT_NAME] or {} if not nmap.registry[SCRIPT_NAME].rootfail then - stdnse.print_verbose("%s not running for lack of privileges.", SCRIPT_NAME); + stdnse.print_verbose("%s not running for lack of privileges.", SCRIPT_NAME) end - nmap.registry[SCRIPT_NAME].rootfail = true; + nmap.registry[SCRIPT_NAME].rootfail = true return nil; end