From: Jouni Malinen Date: Wed, 2 Sep 2015 21:31:45 +0000 (+0300) Subject: FILS: Set EAPOL-Key Key Descriptor Version to 0 with FILS AKMs (AP) X-Git-Tag: hostap_2_7~2244 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=36a50fd4e837dd1ac0126a3a12c04233a9b513bd;p=thirdparty%2Fhostap.git FILS: Set EAPOL-Key Key Descriptor Version to 0 with FILS AKMs (AP) Signed-off-by: Jouni Malinen --- diff --git a/src/ap/wpa_auth.c b/src/ap/wpa_auth.c index d77e90a9f..ede4a5883 100644 --- a/src/ap/wpa_auth.c +++ b/src/ap/wpa_auth.c @@ -1432,7 +1432,8 @@ void __wpa_send_eapol(struct wpa_authenticator *wpa_auth, if (force_version) version = force_version; else if (sm->wpa_key_mgmt == WPA_KEY_MGMT_OSEN || - wpa_key_mgmt_suite_b(sm->wpa_key_mgmt)) + wpa_key_mgmt_suite_b(sm->wpa_key_mgmt) || + wpa_key_mgmt_fils(sm->wpa_key_mgmt)) version = WPA_KEY_INFO_TYPE_AKM_DEFINED; else if (wpa_use_aes_cmac(sm)) version = WPA_KEY_INFO_TYPE_AES_128_CMAC;