hostapd: fix undeclared variable iface_name

Signed-off-by: Nazar Mokrynskyi <nazar@mokrynskyi.com>
This commit is contained in:
Nazar Mokrynskyi 2023-11-14 05:49:28 +02:00 committed by Felix Fietkau
parent b10768476f
commit 684d1a5c35

View file

@ -278,12 +278,12 @@ function iface_reload_config(phydev, config, old_config)
return false;
let iface = hostapd.interfaces[phy];
let iface_name = old_config.bss[0].ifname;
if (!iface) {
hostapd.printf(`Could not find previous interface ${iface_name}`);
return false;
}
let iface_name = old_config.bss[0].ifname;
let first_bss = hostapd.bss[iface_name];
if (!first_bss) {
hostapd.printf(`Could not find bss of previous interface ${iface_name}`);