Remove unnecessary ifname parameter to sta_set_flags() driver op

This commit is contained in:
Jouni Malinen 2010-03-07 11:45:41 +02:00
parent 62847751e4
commit 3234cba40e
8 changed files with 11 additions and 14 deletions

View file

@ -487,7 +487,7 @@ int hostapd_sta_set_flags(struct hostapd_data *hapd, u8 *addr,
{
if (hapd->driver == NULL || hapd->driver->sta_set_flags == NULL)
return 0;
return hapd->driver->sta_set_flags(hapd->conf->iface, hapd->drv_priv, addr, total_flags,
return hapd->driver->sta_set_flags(hapd->drv_priv, addr, total_flags,
flags_or, flags_and);
}