1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-28 02:19:04 +00:00

Fix a format string with missing argument

This commit is contained in:
dmiller
2015-09-18 12:40:33 +00:00
parent 9840973b60
commit b9946229cf

View File

@@ -770,7 +770,7 @@ function test_lockouts(hostinfo)
if(result == results.LOCKED) then
-- If the canary just became locked, we're one step from locking out every account. Loop through the usernames and invalidate them to
-- prevent them from being locked out
stdnse.debug1("Canary (%s) became locked out -- aborting")
stdnse.debug1("Canary (%s) became locked out -- aborting", username)
-- Add it to the locked username list (so it can be reported)
hostinfo['locked_usernames'][username] = true