mesh: Fix 11N capability in Self-protected Action frame
mesh_ht_mode default value is CHAN_UNDEFINED. So previous code set 11N capability even though 11N is not used. Signed-off-by: Natsuki Itaya <Natsuki.Itaya@jp.sony.com> Signed-off-by: Masashi Honma <masashi.honma@gmail.com>
This commit is contained in:
parent
edfefaed3c
commit
9204e73831
1 changed files with 1 additions and 1 deletions
|
@ -315,7 +315,7 @@ static void mesh_mpm_send_plink_action(struct wpa_supplicant *wpa_s,
|
|||
|
||||
#ifdef CONFIG_IEEE80211N
|
||||
if (type != PLINK_CLOSE &&
|
||||
wpa_s->current_ssid->mesh_ht_mode != CHAN_NO_HT) {
|
||||
wpa_s->current_ssid->mesh_ht_mode > CHAN_NO_HT) {
|
||||
pos = hostapd_eid_ht_capabilities(bss, ht_capa_oper);
|
||||
pos = hostapd_eid_ht_operation(bss, pos);
|
||||
wpabuf_put_data(buf, ht_capa_oper, pos - ht_capa_oper);
|
||||
|
|
Loading…
Reference in a new issue