|
@@ -333,7 +333,7 @@ static int hostap_send_eapol(void *priv, const u8 *addr, const u8 *data,
|
|
|
}
|
|
|
|
|
|
|
|
|
-static int hostap_sta_set_flags(const char *ifname, void *priv, const u8 *addr,
|
|
|
+static int hostap_sta_set_flags(void *priv, const u8 *addr,
|
|
|
int total_flags, int flags_or, int flags_and)
|
|
|
{
|
|
|
struct hostap_driver_data *drv = priv;
|
|
@@ -662,8 +662,7 @@ static int hostap_sta_remove(void *priv, const u8 *addr)
|
|
|
struct hostap_driver_data *drv = priv;
|
|
|
struct prism2_hostapd_param param;
|
|
|
|
|
|
- hostap_sta_set_flags(drv->iface, drv, addr, 0, 0,
|
|
|
- ~WPA_STA_AUTHORIZED);
|
|
|
+ hostap_sta_set_flags(drv, addr, 0, 0, ~WPA_STA_AUTHORIZED);
|
|
|
|
|
|
memset(¶m, 0, sizeof(param));
|
|
|
param.cmd = PRISM2_HOSTAPD_REMOVE_STA;
|