1
0
mirror of https://github.com/nmap/nmap.git synced 2026-02-03 12:06:35 +00:00

remove extraneous arguments

This commit is contained in:
batrick
2014-05-29 13:30:21 +00:00
parent 5e6c9d5f78
commit c6fc780a29

View File

@@ -443,7 +443,7 @@ do
co = co,
env = env,
identifier = tostring(co),
info = format("'%s' M:%s", self.id, match(tostring(co), "0x(.*)") , -1);
info = format("'%s' M:%s", self.id, match(tostring(co), "0x(.*)"));
parent = nil, -- placeholder
script = self,
type = script_type,
@@ -466,7 +466,7 @@ do
args = {n = select("#", ...), ...},
close_handlers = {},
co = co,
info = format("'%s' W:%s", self.id, match(tostring(co), "0x(.*)") , -1);
info = format("'%s' W:%s", self.id, match(tostring(co), "0x(.*)"));
parent = self,
worker = true,
};