1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-28 18:39:03 +00:00

Ooops. Forgot the returns

This commit is contained in:
aca
2012-07-10 21:18:23 +00:00
parent 7161193756
commit f083222ea9

View File

@@ -307,6 +307,7 @@ function concat_iterators (iter1, iter2)
return helper(iter2, command, iter1(command))
end
end
return iterator
end
--- Returns a new iterator that filters it's results based on the filter.
@@ -322,6 +323,7 @@ function filter_iterator (iterator, filter)
local function filter (command)
return helper(iterator(command))
end
return filter
end
return _ENV;