Fix typo in WPA_AUTH_ALG_FT definition

This was not supposed to have duplicate value with WPA_AUTH_ALG_LEAP.
The previous version was unable to set FT as the authentication
algorithm with nl80211.
This commit is contained in:
Marcin Marzec 2010-03-07 21:02:55 +02:00 committed by Jouni Malinen
parent a4652ce64c
commit f400f4f34b
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ static inline int wpa_key_mgmt_sha256(int akm)
#define WPA_AUTH_ALG_OPEN BIT(0)
#define WPA_AUTH_ALG_SHARED BIT(1)
#define WPA_AUTH_ALG_LEAP BIT(2)
#define WPA_AUTH_ALG_FT BIT(2)
#define WPA_AUTH_ALG_FT BIT(3)
enum wpa_alg {