From: Senthil Balasubramanian Date: Thu, 4 Dec 2008 15:08:13 +0000 (+0530) Subject: wireless: Incorrect LEAP authentication algorithm identifier. X-Git-Tag: v2.6.29-rc1~581^2~203^2~58 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=bb608e9db7d29616fb6e0d856c23434610d4a1bd;p=linux-2.6-omap-h63xx.git 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 Signed-off-by: John W. Linville --- diff --git a/include/linux/ieee80211.h b/include/linux/ieee80211.h index a6ec928186a..c4e6ca1a630 100644 --- a/include/linux/ieee80211.h +++ b/include/linux/ieee80211.h @@ -836,7 +836,7 @@ struct ieee80211_ht_info { /* Authentication algorithms */ #define WLAN_AUTH_OPEN 0 #define WLAN_AUTH_SHARED_KEY 1 -#define WLAN_AUTH_LEAP 2 +#define WLAN_AUTH_LEAP 128 #define WLAN_AUTH_CHALLENGE_LEN 128