From: Jouni Malinen Date: Fri, 15 Feb 2013 15:09:24 +0000 (+0200) Subject: WPS: Fix build without CONFIG_WPS_NFC X-Git-Tag: aosp-kk-from-upstream~547 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=87470ea298fe944c87f8d5f7286d40e5bf165bb2;p=thirdparty%2Fhostap.git WPS: Fix build without CONFIG_WPS_NFC Commit bbf41865c90c2e16510712fa32290729c194422d added calls to functions that are only defined if CONFIG_WPS_NFC=y. Protect those calls properly to avoid build issues. Signed-hostap: Jouni Malinen --- diff --git a/wpa_supplicant/ap.c b/wpa_supplicant/ap.c index 23c7025e3..82b7e193c 100644 --- a/wpa_supplicant/ap.c +++ b/wpa_supplicant/ap.c @@ -849,6 +849,8 @@ void wpa_supplicant_ap_pwd_auth_fail(struct wpa_supplicant *wpa_s) } +#ifdef CONFIG_WPS_NFC + struct wpabuf * wpas_ap_wps_nfc_config_token(struct wpa_supplicant *wpa_s, int ndef) { @@ -872,6 +874,8 @@ struct wpabuf * wpas_ap_wps_nfc_handover_sel(struct wpa_supplicant *wpa_s, return hostapd_wps_nfc_hs_cr(hapd, ndef); } +#endif /* CONFIG_WPS_NFC */ + #endif /* CONFIG_WPS */