mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2025-02-16 23:40:43 +01:00
owe: handle all non-zero status codes in owe_rx_associate
Now that the OWE failure/retry is handled in netdev, we can catch all associate error status' inside owe_rx_associate rather than only catching UNSUPP_FINITE_CYCLIC_GROUP.
This commit is contained in:
parent
e3f4bfb428
commit
ef06f06cfb
@ -244,7 +244,7 @@ void owe_rx_associate(struct owe_sm *owe, const uint8_t *frame, size_t len)
|
|||||||
|
|
||||||
body = mmpdu_body(mpdu);
|
body = mmpdu_body(mpdu);
|
||||||
|
|
||||||
if (body->status_code == MMPDU_STATUS_CODE_UNSUPP_FINITE_CYCLIC_GROUP) {
|
if (body->status_code) {
|
||||||
owe->complete(body->status_code, owe->user_data);
|
owe->complete(body->status_code, owe->user_data);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user