mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
mac80211: send AP probe as unicast again
Louis reported that a static checker was complaining that
the 'dst' variable was set (multiple times) but not used.
This is due to a previous commit having removed the usage
(apparently erroneously), so add it back.
Fixes: a344d6778a
("mac80211: allow drivers to support NL80211_SCAN_FLAG_RANDOM_ADDR")
Reported-by: Louis Langholtz <lou_langholtz@me.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
parent
07862e13e6
commit
a73f8e21f3
1 changed files with 1 additions and 1 deletions
|
@ -2233,7 +2233,7 @@ static void ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data *sdata)
|
||||||
else
|
else
|
||||||
ssid_len = ssid[1];
|
ssid_len = ssid[1];
|
||||||
|
|
||||||
ieee80211_send_probe_req(sdata, sdata->vif.addr, NULL,
|
ieee80211_send_probe_req(sdata, sdata->vif.addr, dst,
|
||||||
ssid + 2, ssid_len, NULL,
|
ssid + 2, ssid_len, NULL,
|
||||||
0, (u32) -1, true, 0,
|
0, (u32) -1, true, 0,
|
||||||
ifmgd->associated->channel, false);
|
ifmgd->associated->channel, false);
|
||||||
|
|
Loading…
Reference in a new issue