From: Marcin Marzec Date: Sun, 7 Mar 2010 19:02:55 +0000 (+0200) Subject: Fix typo in WPA_AUTH_ALG_FT definition X-Git-Tag: hostap_0_7_2~148 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f400f4f34ba2f4eccdf37623d213f4686cc09409;p=thirdparty%2Fhostap.git 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. --- diff --git a/src/common/defs.h b/src/common/defs.h index 1483ae3ee..173bbd1c9 100644 --- a/src/common/defs.h +++ b/src/common/defs.h @@ -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 {