1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 04:31:29 +00:00

Fix misplaced parentheses. Closes #2544

This commit is contained in:
nnposter
2022-10-23 22:42:11 +00:00
parent 2fcfac9329
commit e4fd4bd2fe
2 changed files with 2 additions and 2 deletions

View File

@@ -88,7 +88,7 @@ local function split(domain)
end end
local function join(components) local function join(components)
return table.concat(remove_empty(components, ".")) return table.concat(remove_empty(components), ".")
end end
-- Remove the first component of a domain name. Return nil if the number of -- Remove the first component of a domain name. Return nil if the number of

View File

@@ -108,7 +108,7 @@ local function split(domain)
end end
local function join(components) local function join(components)
return table.concat(remove_empty(components, ".")) return table.concat(remove_empty(components), ".")
end end
-- Remove the first component of a domain name. Return nil if the number of -- Remove the first component of a domain name. Return nil if the number of