Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 158841
b: refs/heads/master
c: 3daf097
h: refs/heads/master
i:
  158839: 23ac478
v: v3
  • Loading branch information
David Kilroy authored and John W. Linville committed Jul 10, 2009
1 parent 1e6d563 commit fbe9f0c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f1f74825fe01ac77204ca34e3240dec50a8207c2
refs/heads/master: 3daf097594d398b2ddd2dca6caeaa92cb9148e23
15 changes: 13 additions & 2 deletions trunk/net/wireless/wext-compat.c
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,19 @@ int cfg80211_wext_giwrange(struct net_device *dev,
range->avg_qual.noise = range->max_qual.noise / 2;
range->avg_qual.updated = range->max_qual.updated;

range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_WPA2 |
IW_ENC_CAPA_CIPHER_TKIP | IW_ENC_CAPA_CIPHER_CCMP;
range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_WPA2;

for (c = 0; c < wdev->wiphy->n_cipher_suites; c++) {
switch (wdev->wiphy->cipher_suites[c]) {
case WLAN_CIPHER_SUITE_TKIP:
range->enc_capa |= IW_ENC_CAPA_CIPHER_TKIP;
break;

case WLAN_CIPHER_SUITE_CCMP:
range->enc_capa |= IW_ENC_CAPA_CIPHER_CCMP;
break;
}
}

for (band = 0; band < IEEE80211_NUM_BANDS; band ++) {
int i;
Expand Down

0 comments on commit fbe9f0c

Please sign in to comment.