hostapd: fix call to hostapd reload

access to undeclared variable radio In [anonymous function](), file /usr/share/hostap/hostapd.uc, line 830, byte 45:

Signed-off-by: Florian Maurer <f.maurer@outlook.de>
This commit is contained in:
Florian Maurer 2024-12-14 12:38:28 +01:00
parent 15e173bf7e
commit 41adbe3508
No known key found for this signature in database
GPG Key ID: D5B29CD0C9E06237

View File

@ -899,7 +899,7 @@ let main_obj = {
let phy_list = req.args.phy ? [ phy_name(req.args.phy, req.args.radio) ] : keys(hostapd.data.config); let phy_list = req.args.phy ? [ phy_name(req.args.phy, req.args.radio) ] : keys(hostapd.data.config);
for (let phy_name in phy_list) { for (let phy_name in phy_list) {
let phy = hostapd.data.config[phy_name]; let phy = hostapd.data.config[phy_name];
let config = iface_load_config(phy.phy, radio, phy.orig_file); let config = iface_load_config(phy.phy, phy.radio_idx, phy.orig_file);
iface_set_config(phy_name, config); iface_set_config(phy_name, config);
} }