diff options
author | Senthil Balasubramanian <senthilkumar@atheros.com> | 2008-12-04 10:08:13 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-12-12 13:48:20 -0500 |
commit | bb608e9db7d29616fb6e0d856c23434610d4a1bd (patch) | |
tree | b1a45c83131e392e04acac948fe1dbabcde02633 /include/linux | |
parent | a7db74f4be3835fd16c6c582d320f692ccccc622 (diff) |
wireless: Incorrect LEAP authentication algorithm identifier.
This patch fixes a regression introduced by
"wireless: avoid some net/ieee80211.h vs. linux/ieee80211.h conflicts"
LEAP authentication algorithm identifier should be 128.
Signed-off-by: Senthil Balasubramanian <senthilkumar@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/ieee80211.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/ieee80211.h b/include/linux/ieee80211.h index a6ec928186ad..c4e6ca1a6306 100644 --- a/include/linux/ieee80211.h +++ b/include/linux/ieee80211.h | |||
@@ -836,7 +836,7 @@ struct ieee80211_ht_info { | |||
836 | /* Authentication algorithms */ | 836 | /* Authentication algorithms */ |
837 | #define WLAN_AUTH_OPEN 0 | 837 | #define WLAN_AUTH_OPEN 0 |
838 | #define WLAN_AUTH_SHARED_KEY 1 | 838 | #define WLAN_AUTH_SHARED_KEY 1 |
839 | #define WLAN_AUTH_LEAP 2 | 839 | #define WLAN_AUTH_LEAP 128 |
840 | 840 | ||
841 | #define WLAN_AUTH_CHALLENGE_LEN 128 | 841 | #define WLAN_AUTH_CHALLENGE_LEN 128 |
842 | 842 | ||