Remove forgotten ifname parameter from set_beacon() call
This commit is contained in:
parent
071799872f
commit
17557ebe30
1 changed files with 1 additions and 2 deletions
|
@ -326,8 +326,7 @@ static inline int wpa_drv_set_beacon(struct wpa_supplicant *wpa_s,
|
||||||
int dtim_period, int beacon_int)
|
int dtim_period, int beacon_int)
|
||||||
{
|
{
|
||||||
if (wpa_s->driver->set_beacon)
|
if (wpa_s->driver->set_beacon)
|
||||||
return wpa_s->driver->set_beacon(wpa_s->ifname,
|
return wpa_s->driver->set_beacon(wpa_s->drv_priv, head,
|
||||||
wpa_s->drv_priv, head,
|
|
||||||
head_len, tail, tail_len,
|
head_len, tail, tail_len,
|
||||||
dtim_period, beacon_int);
|
dtim_period, beacon_int);
|
||||||
return -1;
|
return -1;
|
||||||
|
|
Loading…
Reference in a new issue