nl80211: Fix WEP key configuration for prior to authentication
The driver data was changed from struct wpa_driver_nl80211_data * to struct i802_bss * and the internal call will need to match that change.
This commit is contained in:
parent
03bcb0af0d
commit
2ea2fcc7e6
1 changed files with 2 additions and 2 deletions
|
@ -2274,8 +2274,8 @@ retry:
|
|||
for (i = 0; i < 4; i++) {
|
||||
if (!params->wep_key[i])
|
||||
continue;
|
||||
wpa_driver_nl80211_set_key(bss->ifname, drv, WPA_ALG_WEP, NULL,
|
||||
i,
|
||||
wpa_driver_nl80211_set_key(bss->ifname, priv, WPA_ALG_WEP,
|
||||
NULL, i,
|
||||
i == params->wep_tx_keyidx, NULL, 0,
|
||||
params->wep_key[i],
|
||||
params->wep_key_len[i]);
|
||||
|
|
Loading…
Reference in a new issue