]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
Fix typo in WPA_AUTH_ALG_FT definition
authorMarcin Marzec <etagh@wp.pl>
Sun, 7 Mar 2010 19:02:55 +0000 (21:02 +0200)
committerJouni Malinen <j@w1.fi>
Sun, 7 Mar 2010 19:02:55 +0000 (21:02 +0200)
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.

src/common/defs.h

index 1483ae3ee15e4e9de47c0529c8d37b3b2dc51913..173bbd1c9897f178b6d5099fc58146e0d87d4903 100644 (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 {