Skip to content
Snippets Groups Projects
Verified Commit 4218d2d9 authored by Christophe Nowicki's avatar Christophe Nowicki Committed by Tomas Krizek
Browse files

fix renumber module configuration with multiple IP addresses

parent 0fbf3f2b
Branches
Tags
1 merge request!1107Renumber module fix
Pipeline #73281 failed with stages
in 53 minutes and 51 seconds
......@@ -115,7 +115,7 @@ function M.config (conf)
if type(conf) ~= 'table' or type(conf[1]) ~= 'table' then
error('[renumber] expected { {prefix, target}, ... }')
end
for i = 1, #conf do add_prefix(conf[i][1], conf[1][2]) end
for i = 1, #conf do add_prefix(conf[i][1], conf[i][2]) end
end
-- Layers
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment