1
0
mirror of https://github.com/nmap/nmap.git synced 2026-02-01 11:09:07 +00:00

Fixed some inconsistent formatting.

This commit is contained in:
batrick
2009-06-02 05:28:58 +00:00
parent 3e4950eec2
commit e2b7bbc356

View File

@@ -395,10 +395,10 @@ local function run (threads)
-- yielded until Nsock wakes them. After being awakened with
-- nse_restore, waiting threads become pending and later are moved all
-- at once back to running.
local running, waiting, pending = {}, {}, {}
local running, waiting, pending = {}, {}, {};
-- hosts maps a host to a list of threads for that host.
local hosts, total = {}, 0
local current
local hosts, total = {}, 0;
local current;
local progress = cnse.scan_progress_meter(NAME);
print_debug(1, "NSE Script Threads (%d) running:", #threads);