mirror of https://github.com/hak5/openwrt-owl.git
hostapd: ensure that wpa_supplicant_setup_vif() returns success in cases where wpa_supplicant is not invoked (#11996)
SVN-Revision: 33674owl
parent
f14b8d43f2
commit
ff1b163540
|
@ -191,6 +191,9 @@ network={
|
||||||
$wep_tx_keyidx
|
$wep_tx_keyidx
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
[ -z "$proto" -a "$key_mgmt" != "NONE" ] || \
|
if [ -n "$proto" -o "$key_mgmt" == "NONE" ]; then
|
||||||
wpa_supplicant ${bridge:+ -b $bridge} -B -P "/var/run/wifi-${ifname}.pid" -D ${driver:-wext} -i "$ifname" -c /var/run/wpa_supplicant-$ifname.conf $options
|
wpa_supplicant ${bridge:+ -b $bridge} -B -P "/var/run/wifi-${ifname}.pid" -D ${driver:-wext} -i "$ifname" -c /var/run/wpa_supplicant-$ifname.conf $options
|
||||||
|
else
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue