mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 17:12:06 +00:00
[PATCH] libertas: fix mixed-case abuse in cmd_ds_802_11_ad_hoc_start
Signed-off-by: Dan Williams <dcbw@redhat.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
ea8da92d70
commit
b44898eb2c
@ -439,7 +439,7 @@ struct cmd_ds_802_11_rate_adapt_rateset {
|
||||
};
|
||||
|
||||
struct cmd_ds_802_11_ad_hoc_start {
|
||||
u8 SSID[IW_ESSID_MAX_SIZE];
|
||||
u8 ssid[IW_ESSID_MAX_SIZE];
|
||||
u8 bsstype;
|
||||
__le16 beaconperiod;
|
||||
u8 dtimperiod;
|
||||
|
@ -479,8 +479,8 @@ int libertas_cmd_80211_ad_hoc_start(wlan_private * priv,
|
||||
* and operational rates.
|
||||
*/
|
||||
|
||||
memset(adhs->SSID, 0, IW_ESSID_MAX_SIZE);
|
||||
memcpy(adhs->SSID, assoc_req->ssid, assoc_req->ssid_len);
|
||||
memset(adhs->ssid, 0, IW_ESSID_MAX_SIZE);
|
||||
memcpy(adhs->ssid, assoc_req->ssid, assoc_req->ssid_len);
|
||||
|
||||
lbs_deb_join("ADHOC_S_CMD: SSID '%s', ssid length %u\n",
|
||||
escape_essid(assoc_req->ssid, assoc_req->ssid_len),
|
||||
|
Loading…
Reference in New Issue
Block a user