Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 79333
b: refs/heads/master
c: 8524f59
h: refs/heads/master
i:
  79331: 9f61f2a
v: v3
  • Loading branch information
Al Viro authored and David S. Miller committed Jan 28, 2008
1 parent 9891454 commit 2c3f8a9
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 21 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: d9e94d5647ee6700773d81514a8ccb7dc6342fb4
refs/heads/master: 8524f59d4735e1ff9c9dc3e09ebcc7bdb3b32b7b
39 changes: 19 additions & 20 deletions trunk/net/ieee80211/ieee80211_rx.c
Original file line number Diff line number Diff line change
Expand Up @@ -1585,26 +1585,25 @@ static void ieee80211_process_probe_response(struct ieee80211_device
DECLARE_MAC_BUF(mac);

IEEE80211_DEBUG_SCAN("'%s' (%s"
"): %c%c%c%c %c%c%c%c-%c%c%c%c %c%c%c%c\n",
escape_essid(info_element->data,
info_element->len),
print_mac(mac, beacon->header.addr3),
(beacon->capability & (1 << 0xf)) ? '1' : '0',
(beacon->capability & (1 << 0xe)) ? '1' : '0',
(beacon->capability & (1 << 0xd)) ? '1' : '0',
(beacon->capability & (1 << 0xc)) ? '1' : '0',
(beacon->capability & (1 << 0xb)) ? '1' : '0',
(beacon->capability & (1 << 0xa)) ? '1' : '0',
(beacon->capability & (1 << 0x9)) ? '1' : '0',
(beacon->capability & (1 << 0x8)) ? '1' : '0',
(beacon->capability & (1 << 0x7)) ? '1' : '0',
(beacon->capability & (1 << 0x6)) ? '1' : '0',
(beacon->capability & (1 << 0x5)) ? '1' : '0',
(beacon->capability & (1 << 0x4)) ? '1' : '0',
(beacon->capability & (1 << 0x3)) ? '1' : '0',
(beacon->capability & (1 << 0x2)) ? '1' : '0',
(beacon->capability & (1 << 0x1)) ? '1' : '0',
(beacon->capability & (1 << 0x0)) ? '1' : '0');
"): %c%c%c%c %c%c%c%c-%c%c%c%c %c%c%c%c\n",
escape_essid(info_element->data, info_element->len),
print_mac(mac, beacon->header.addr3),
(beacon->capability & cpu_to_le16(1 << 0xf)) ? '1' : '0',
(beacon->capability & cpu_to_le16(1 << 0xe)) ? '1' : '0',
(beacon->capability & cpu_to_le16(1 << 0xd)) ? '1' : '0',
(beacon->capability & cpu_to_le16(1 << 0xc)) ? '1' : '0',
(beacon->capability & cpu_to_le16(1 << 0xb)) ? '1' : '0',
(beacon->capability & cpu_to_le16(1 << 0xa)) ? '1' : '0',
(beacon->capability & cpu_to_le16(1 << 0x9)) ? '1' : '0',
(beacon->capability & cpu_to_le16(1 << 0x8)) ? '1' : '0',
(beacon->capability & cpu_to_le16(1 << 0x7)) ? '1' : '0',
(beacon->capability & cpu_to_le16(1 << 0x6)) ? '1' : '0',
(beacon->capability & cpu_to_le16(1 << 0x5)) ? '1' : '0',
(beacon->capability & cpu_to_le16(1 << 0x4)) ? '1' : '0',
(beacon->capability & cpu_to_le16(1 << 0x3)) ? '1' : '0',
(beacon->capability & cpu_to_le16(1 << 0x2)) ? '1' : '0',
(beacon->capability & cpu_to_le16(1 << 0x1)) ? '1' : '0',
(beacon->capability & cpu_to_le16(1 << 0x0)) ? '1' : '0');

if (ieee80211_network_init(ieee, beacon, &network, stats)) {
IEEE80211_DEBUG_SCAN("Dropped '%s' (%s) via %s.\n",
Expand Down

0 comments on commit 2c3f8a9

Please sign in to comment.