mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2025-02-21 12:20:43 +01:00
ie: There can be only one group_cipher
So the use of & operation is unneeded. A more correct way is to use the equals operator.
This commit is contained in:
parent
8c172f4ec1
commit
29a89d2a8b
2
src/ie.c
2
src/ie.c
@ -1035,7 +1035,7 @@ bool ie_build_wpa(const struct ie_rsn_info *info, uint8_t *to)
|
||||
* Use of CCMP as the group cipher suite with TKIP as the
|
||||
* pairwise cipher suite shall not be supported.
|
||||
*/
|
||||
if (info->group_cipher & IE_RSN_CIPHER_SUITE_CCMP &&
|
||||
if (info->group_cipher == IE_RSN_CIPHER_SUITE_CCMP &&
|
||||
info->pairwise_ciphers & IE_RSN_CIPHER_SUITE_TKIP)
|
||||
return false;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user