Skip to content
Snippets Groups Projects
Unverified Commit 806af270 authored by Matthias Schiffer's avatar Matthias Schiffer
Browse files

gluon-client-bridge, gluon-mesh-batman-adv-core: make macaddr variable local in upgrade script

parent 7565839f
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@ local function configure_client(config, radio, index, suffix)
return
end
macaddr = util.get_wlan_mac(radio, index, 1)
local macaddr = util.get_wlan_mac(radio, index, 1)
if not macaddr then
return
end
......
......@@ -33,7 +33,7 @@ local function configure_ibss(config, radio, index, suffix, disabled)
return
end
macaddr = util.get_wlan_mac(radio, index, 3)
local macaddr = util.get_wlan_mac(radio, index, 3)
if not macaddr then
return
end
......@@ -88,7 +88,7 @@ local function configure_mesh(config, radio, index, suffix, disabled)
return
end
macaddr = util.get_wlan_mac(radio, index, 2)
local macaddr = util.get_wlan_mac(radio, index, 2)
if not macaddr then
return
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment