3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-10-05 19:08:52 +02:00

common: fix missing PSK_SHA256 AKM

This AKM was lost while moving all the AKM checks into a the macros
This commit is contained in:
James Prestwood 2019-04-05 15:30:54 -07:00 committed by Denis Kenzior
parent 9c6589a6ad
commit c416db0708

View File

@ -67,6 +67,7 @@ bool security_from_str(const char *str, enum security *security)
#define AKM_IS_PSK(akm) \ #define AKM_IS_PSK(akm) \
( \ ( \
akm & (IE_RSN_AKM_SUITE_PSK | \ akm & (IE_RSN_AKM_SUITE_PSK | \
IE_RSN_AKM_SUITE_PSK_SHA256 | \
IE_RSN_AKM_SUITE_FT_USING_PSK | \ IE_RSN_AKM_SUITE_FT_USING_PSK | \
IE_RSN_AKM_SUITE_FT_USING_PSK | \ IE_RSN_AKM_SUITE_FT_USING_PSK | \
IE_RSN_AKM_SUITE_SAE_SHA256 | \ IE_RSN_AKM_SUITE_SAE_SHA256 | \