mirror of
https://github.com/nmap/nmap.git
synced 2026-06-13 11:38:18 +00:00
Fixed a incorrect arguments being passed to string.format
This commit is contained in:
parent
1d82523af0
commit
404c0848bf
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue