mirror of
https://github.com/nmap/nmap.git
synced 2025-12-20 22:49:01 +00:00
Fix format string argument mismatches
Cases where the format string does not contain any placeholders, but values are given anyway. Cases where string.format is used without any placeholders or arguments.
This commit is contained in:
@@ -115,7 +115,7 @@ action = function(host, port)
|
||||
|
||||
local url_iter = urlIterator(f)
|
||||
if ( not(url_iter) ) then
|
||||
return stdnse.format_output(false, ("Could not open the URL dictionary: "):format(f))
|
||||
return stdnse.format_output(false, ("Could not open the URL dictionary: %s"):format(f))
|
||||
end
|
||||
|
||||
local threads = {}
|
||||
|
||||
Reference in New Issue
Block a user