From e13e2a56369f83ce7b39710cc2de6a981034f9a5 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Mon, 10 Apr 2023 15:01:33 -0700 Subject: [PATCH] common: add FT-8021X-SHA384 to AKM_IS_8021X Without this the AKM shows up as WEP. --- src/common.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common.c b/src/common.c index ea7b0ca0..91979423 100644 --- a/src/common.c +++ b/src/common.c @@ -78,6 +78,7 @@ bool security_from_str(const char *str, enum security *security) akm & (IE_RSN_AKM_SUITE_8021X | \ IE_RSN_AKM_SUITE_8021X_SHA256 | \ IE_RSN_AKM_SUITE_FT_OVER_8021X | \ + IE_RSN_AKM_SUITE_FT_OVER_8021X_SHA384 | \ IE_RSN_AKM_SUITE_FILS_SHA256 | \ IE_RSN_AKM_SUITE_FILS_SHA384 | \ IE_RSN_AKM_SUITE_FT_OVER_FILS_SHA256 | \