nl80211: Do not send FILS ERP sequence number without rRK
FILS ERP cannot be used without rRK, so include these attributes only together. Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
This commit is contained in:
parent
52a3257621
commit
70b80c31f9
1 changed files with 6 additions and 6 deletions
|
@ -5781,13 +5781,13 @@ static int nl80211_put_fils_connect_params(struct wpa_driver_nl80211_data *drv,
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (params->fils_erp_rrk_len) {
|
||||||
wpa_printf(MSG_DEBUG, " * FILS ERP next seq %u",
|
wpa_printf(MSG_DEBUG, " * FILS ERP next seq %u",
|
||||||
params->fils_erp_next_seq_num);
|
params->fils_erp_next_seq_num);
|
||||||
if (nla_put_u16(msg, NL80211_ATTR_FILS_ERP_NEXT_SEQ_NUM,
|
if (nla_put_u16(msg, NL80211_ATTR_FILS_ERP_NEXT_SEQ_NUM,
|
||||||
params->fils_erp_next_seq_num))
|
params->fils_erp_next_seq_num))
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
if (params->fils_erp_rrk_len) {
|
|
||||||
wpa_printf(MSG_DEBUG, " * FILS ERP rRK (len=%lu)",
|
wpa_printf(MSG_DEBUG, " * FILS ERP rRK (len=%lu)",
|
||||||
(unsigned long) params->fils_erp_rrk_len);
|
(unsigned long) params->fils_erp_rrk_len);
|
||||||
if (nla_put(msg, NL80211_ATTR_FILS_ERP_RRK,
|
if (nla_put(msg, NL80211_ATTR_FILS_ERP_RRK,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue