FT: Fix RRB for FT over-the-air case
Commit 66d464067d
('FT: Register RRB
l2_packet only if FT-over-DS is enabled') disabled RRB l2_packet socket
if ft_over_ds is disabled, but this socket is required for FT
over-the-air, too (FT key distribution). Enable the socket regardless of
ft_over_ds setting if FT is enabled.
Signed-off-by: Günther Kelleter <guenther.kelleter@devolo.de>
This commit is contained in:
parent
9e5a5de55a
commit
b92d2a57ef
1 changed files with 1 additions and 1 deletions
|
@ -650,7 +650,7 @@ int hostapd_setup_wpa(struct hostapd_data *hapd)
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_IEEE80211R
|
#ifdef CONFIG_IEEE80211R
|
||||||
if (!hostapd_drv_none(hapd) && hapd->conf->ft_over_ds &&
|
if (!hostapd_drv_none(hapd) &&
|
||||||
wpa_key_mgmt_ft(hapd->conf->wpa_key_mgmt)) {
|
wpa_key_mgmt_ft(hapd->conf->wpa_key_mgmt)) {
|
||||||
hapd->l2 = l2_packet_init(hapd->conf->bridge[0] ?
|
hapd->l2 = l2_packet_init(hapd->conf->bridge[0] ?
|
||||||
hapd->conf->bridge :
|
hapd->conf->bridge :
|
||||||
|
|
Loading…
Reference in a new issue