diff options
author | David Kilroy <kilroyd@googlemail.com> | 2009-06-18 18:21:17 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-07-10 15:01:42 -0400 |
commit | 27bea66c22582853ad2e1de93d26c3016493818b (patch) | |
tree | c5c95e1b5363c7fdb89d84ced6824342b9e3be3b /net/wireless/wext-compat.c | |
parent | 2ab658f9ce218ae93b3d2db2b3fe68bfefb81196 (diff) |
cfg80211: infer WPA and WPA2 support from TKIP and CCMP
Signed-off-by: David Kilroy <kilroyd@googlemail.com>
Acked-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/wireless/wext-compat.c')
-rw-r--r-- | net/wireless/wext-compat.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/wireless/wext-compat.c b/net/wireless/wext-compat.c index 2f7e7760bc7e..cae3b52fba7f 100644 --- a/net/wireless/wext-compat.c +++ b/net/wireless/wext-compat.c | |||
@@ -201,16 +201,16 @@ int cfg80211_wext_giwrange(struct net_device *dev, | |||
201 | range->avg_qual.noise = range->max_qual.noise / 2; | 201 | range->avg_qual.noise = range->max_qual.noise / 2; |
202 | range->avg_qual.updated = range->max_qual.updated; | 202 | range->avg_qual.updated = range->max_qual.updated; |
203 | 203 | ||
204 | range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_WPA2; | ||
205 | |||
206 | for (c = 0; c < wdev->wiphy->n_cipher_suites; c++) { | 204 | for (c = 0; c < wdev->wiphy->n_cipher_suites; c++) { |
207 | switch (wdev->wiphy->cipher_suites[c]) { | 205 | switch (wdev->wiphy->cipher_suites[c]) { |
208 | case WLAN_CIPHER_SUITE_TKIP: | 206 | case WLAN_CIPHER_SUITE_TKIP: |
209 | range->enc_capa |= IW_ENC_CAPA_CIPHER_TKIP; | 207 | range->enc_capa |= (IW_ENC_CAPA_CIPHER_TKIP | |
208 | IW_ENC_CAPA_WPA); | ||
210 | break; | 209 | break; |
211 | 210 | ||
212 | case WLAN_CIPHER_SUITE_CCMP: | 211 | case WLAN_CIPHER_SUITE_CCMP: |
213 | range->enc_capa |= IW_ENC_CAPA_CIPHER_CCMP; | 212 | range->enc_capa |= (IW_ENC_CAPA_CIPHER_CCMP | |
213 | IW_ENC_CAPA_WPA2); | ||
214 | break; | 214 | break; |
215 | 215 | ||
216 | case WLAN_CIPHER_SUITE_WEP40: | 216 | case WLAN_CIPHER_SUITE_WEP40: |