1
0
mirror of https://github.com/nmap/nmap.git synced 2026-02-04 20:46:33 +00:00

Fixes indentation

This commit is contained in:
nnposter
2018-08-05 21:30:42 +00:00
parent 1e1f7c80c2
commit a4237019ac

View File

@@ -1143,9 +1143,9 @@ function smallest_range( range_1, range_2 )
local r2_first, r2_last = ipOps.get_ips_from_range( range_2.range )
if range_1.pointer
and ipOps.compare_ip( r1_first, "eq", r2_first )
and ipOps.compare_ip( r1_last, "eq", r2_last )
and range_1.pointer < range_2.pointer then
and ipOps.compare_ip( r1_first, "eq", r2_first )
and ipOps.compare_ip( r1_last, "eq", r2_last )
and range_1.pointer < range_2.pointer then
sorted = false
end