Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 348898
b: refs/heads/master
c: 811a37e
h: refs/heads/master
v: v3
  • Loading branch information
Tormod Volden authored and Greg Kroah-Hartman committed Jan 18, 2013
1 parent 610960c commit e4a96c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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: aec992f2ba183e8fcbb761c6d6ee2f0772b151ce
refs/heads/master: 811a37effdb11e54e1ff1ddaa944286c88f58487
2 changes: 1 addition & 1 deletion trunk/drivers/staging/wlan-ng/prism2mgmt.c
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ int prism2mgmt_scan_results(wlandevice_t *wlandev, void *msgp)
/* SSID */
req->ssid.status = P80211ENUM_msgitem_status_data_ok;
req->ssid.data.len = le16_to_cpu(item->ssid.len);
req->ssid.data.len = min_t(u16, req->ssid.data.len, WLAN_BSSID_LEN);
req->ssid.data.len = min_t(u16, req->ssid.data.len, WLAN_SSID_MAXLEN);
memcpy(req->ssid.data.data, item->ssid.data, req->ssid.data.len);

/* supported rates */
Expand Down

0 comments on commit e4a96c3

Please sign in to comment.