3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-10-04 02:18:49 +02:00

owe: fix group renegotiation to not reauthenticate

If the AP send an associate with an unsupported group status, OWE
was completely starting over and sending out an authenticate frame
when it could instead just resend the associate frame with a
different group.
This commit is contained in:
James Prestwood 2019-04-19 11:03:13 -07:00 committed by Denis Kenzior
parent 17e3a5ee3c
commit b829daaab7

View File

@ -327,7 +327,7 @@ bool owe_retry(struct owe_sm *owe)
l_debug("OWE retrying with group %u", owe->group);
owe_start(owe);
owe_rx_authenticate(owe);
return true;
}