From: Jouni Malinen Date: Sat, 12 Dec 2009 21:55:09 +0000 (+0200) Subject: driver_bsd: Fix build after previous commit X-Git-Tag: hostap_0_7_1~351 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c9b9e494fc1a705de149ee099556dc8be64e3b38;p=thirdparty%2Fhostap.git driver_bsd: Fix build after previous commit --- diff --git a/src/drivers/driver_bsd.c b/src/drivers/driver_bsd.c index 81ac8adc3..400c7b095 100644 --- a/src/drivers/driver_bsd.c +++ b/src/drivers/driver_bsd.c @@ -335,7 +335,7 @@ bsd_set_ieee8021x(void *priv, struct wpa_bss_params *params) HOSTAPD_LEVEL_WARNING, "No 802.1X or WPA enabled!"); return -1; } - if (params->wpa && bsd_configure_wpa(drv) != 0) { + if (params->wpa && bsd_configure_wpa(drv, params) != 0) { hostapd_logger(drv->hapd, NULL, HOSTAPD_MODULE_DRIVER, HOSTAPD_LEVEL_WARNING, "Error configuring WPA state!"); return -1;