]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
Remove unnecessary ifdef from RSN_AUTH_KEY_MGMT_* definitions
authorJouni Malinen <j@w1.fi>
Sat, 28 Jan 2017 10:26:25 +0000 (12:26 +0200)
committerJouni Malinen <j@w1.fi>
Sat, 28 Jan 2017 10:26:25 +0000 (12:26 +0200)
These FT AKM suite selectors might be needed in code even if
CONFIG_IEEE80211R is not defined.

Signed-off-by: Jouni Malinen <j@w1.fi>
src/common/wpa_common.h

index 3288a029b9039745d4291152d25d7ac4d8b5f761..5a55d131f410fe4a069e5fa2d0f1bb89436475ce 100644 (file)
@@ -48,10 +48,8 @@ WPA_CIPHER_GTK_NOT_USED)
 
 #define RSN_AUTH_KEY_MGMT_UNSPEC_802_1X RSN_SELECTOR(0x00, 0x0f, 0xac, 1)
 #define RSN_AUTH_KEY_MGMT_PSK_OVER_802_1X RSN_SELECTOR(0x00, 0x0f, 0xac, 2)
-#ifdef CONFIG_IEEE80211R
 #define RSN_AUTH_KEY_MGMT_FT_802_1X RSN_SELECTOR(0x00, 0x0f, 0xac, 3)
 #define RSN_AUTH_KEY_MGMT_FT_PSK RSN_SELECTOR(0x00, 0x0f, 0xac, 4)
-#endif /* CONFIG_IEEE80211R */
 #define RSN_AUTH_KEY_MGMT_802_1X_SHA256 RSN_SELECTOR(0x00, 0x0f, 0xac, 5)
 #define RSN_AUTH_KEY_MGMT_PSK_SHA256 RSN_SELECTOR(0x00, 0x0f, 0xac, 6)
 #define RSN_AUTH_KEY_MGMT_TPK_HANDSHAKE RSN_SELECTOR(0x00, 0x0f, 0xac, 7)