mirror of
https://github.com/nmap/nmap.git
synced 2026-05-13 08:46:45 +00:00
Fix misplaced parentheses. Closes #2544
This commit is contained in:
parent
2fcfac9329
commit
e4fd4bd2fe
2 changed files with 2 additions and 2 deletions
|
|
@ -88,7 +88,7 @@ local function split(domain)
|
|||
end
|
||||
|
||||
local function join(components)
|
||||
return table.concat(remove_empty(components, "."))
|
||||
return table.concat(remove_empty(components), ".")
|
||||
end
|
||||
|
||||
-- Remove the first component of a domain name. Return nil if the number of
|
||||
|
|
|
|||
|
|
@ -108,7 +108,7 @@ local function split(domain)
|
|||
end
|
||||
|
||||
local function join(components)
|
||||
return table.concat(remove_empty(components, "."))
|
||||
return table.concat(remove_empty(components), ".")
|
||||
end
|
||||
|
||||
-- Remove the first component of a domain name. Return nil if the number of
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue