Fix build without CONFIG_WPS=y
Commit 620c783753
modified
wpas_wps_ssid_bss_match() prototype but forgot to update the non-WPS
wrapper inline function. Fix that to match with the new bss parameter
type.
Signed-hostap: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
parent
a93a15bbfd
commit
3385647da9
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ static inline u8 wpas_wps_get_req_type(struct wpa_ssid *ssid)
|
||||||
|
|
||||||
static inline int wpas_wps_ssid_bss_match(struct wpa_supplicant *wpa_s,
|
static inline int wpas_wps_ssid_bss_match(struct wpa_supplicant *wpa_s,
|
||||||
struct wpa_ssid *ssid,
|
struct wpa_ssid *ssid,
|
||||||
struct wpa_scan_res *bss)
|
struct wpa_bss *bss)
|
||||||
{
|
{
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue