Browse Source

qcacmn: fix FT_PSK connection failure

For FT_PSK connection, we use WLAN_AKM_FT_IEEE8021X to make the
security match which causes can't find the candidate AP, the fix
is to use WLAN_AKM_FT_PSK instead.

Change-Id: Ic11fa8e47ccee04621e3bb9491f138c425c91cee
CRs-Fixed: 2131598
Frank Liu 7 years ago
parent
commit
e72a02d4e7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      umac/scan/core/src/wlan_scan_cache_db_ops.c

+ 1 - 1
umac/scan/core/src/wlan_scan_cache_db_ops.c

@@ -590,7 +590,7 @@ static bool scm_is_rsn_security(struct scan_filter *filter,
 
 		if (scm_is_cipher_match(rsn.akm_suites,
 		   rsn.akm_suite_count,
-		   WLAN_RSN_SEL(WLAN_AKM_FT_IEEE8021X))) {
+		   WLAN_RSN_SEL(WLAN_AKM_FT_PSK))) {
 			if (WLAN_AUTH_TYPE_FT_RSN_PSK ==
 			   filter->auth_type[i]) {
 				neg_auth = WLAN_AUTH_TYPE_FT_RSN_PSK;