diff options
Diffstat (limited to 'hostapd/driver_i.h')
-rw-r--r-- | hostapd/driver_i.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/hostapd/driver_i.h b/hostapd/driver_i.h index 81be227..170c3b3 100644 --- a/hostapd/driver_i.h +++ b/hostapd/driver_i.h @@ -175,12 +175,11 @@ hostapd_set_ssid(struct hostapd_data *hapd, const u8 *buf, size_t len) } static inline int -hostapd_send_mgmt_frame(struct hostapd_data *hapd, const void *msg, size_t len, - int flags) +hostapd_send_mgmt_frame(struct hostapd_data *hapd, const void *msg, size_t len) { if (hapd->driver == NULL || hapd->driver->send_mgmt_frame == NULL) return 0; - return hapd->driver->send_mgmt_frame(hapd->drv_priv, msg, len, flags); + return hapd->driver->send_mgmt_frame(hapd->drv_priv, msg, len); } static inline int |