From a1abb40d50a1f70deb583de8d5f277384defef22 Mon Sep 17 00:00:00 2001 From: jah Date: Mon, 23 Jul 2012 22:25:51 +0000 Subject: [PATCH] Removed extraneous newline from a couple of print_debug strings. --- scripts/smb-brute.nse | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/smb-brute.nse b/scripts/smb-brute.nse index aadb06be9..c7606f47a 100644 --- a/scripts/smb-brute.nse +++ b/scripts/smb-brute.nse @@ -530,13 +530,13 @@ local function bad_lockout_policy(host) local status, result = msrpc.get_domains(host) if(not(status)) then - stdnse.print_debug(1, "smb-brute: Couldn't detect lockout policy: %s\n", result) + stdnse.print_debug(1, "smb-brute: Couldn't detect lockout policy: %s", result) return false, "Couldn't retrieve lockout policy: " .. result end for domain, data in pairs(result) do if(data and data.lockout_threshold) then - stdnse.print_debug(1, "smb-brute: Server's lockout policy: lock out after %d attempts\n", data.lockout_threshold) + stdnse.print_debug(1, "smb-brute: Server's lockout policy: lock out after %d attempts", data.lockout_threshold) return true, true end end