1
0
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:
batrick
2008-06-21 21:08:38 +00:00
parent 1d82523af0
commit 404c0848bf

View File

@@ -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