mirror of
https://github.com/nmap/nmap.git
synced 2025-12-27 09:59:04 +00:00
Fixed a incorrect arguments being passed to string.format
This commit is contained in:
@@ -12,7 +12,7 @@ print_debug = function(level, fmt, ...)
|
||||
if verbosity then
|
||||
nmap.print_debug_unformatted(verbosity, fmt:format(...));
|
||||
else
|
||||
nmap.print_debug_unformatted(1, level:format(...));
|
||||
nmap.print_debug_unformatted(1, level:format(fmt, ...));
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user