From: Jouni Malinen Date: Tue, 12 Mar 2013 22:01:32 +0000 (+0200) Subject: WPS NFC: Fix build without CONFIG_WPS_ER X-Git-Tag: aosp-kk-from-upstream~468 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=94d7acf3df09da611a96b2a5b7d821e41d02bf80;p=thirdparty%2Fhostap.git WPS NFC: Fix build without CONFIG_WPS_ER Signed-hostap: Jouni Malinen --- diff --git a/wpa_supplicant/wps_supplicant.c b/wpa_supplicant/wps_supplicant.c index 509a7c0c8..1b1b5f73d 100644 --- a/wpa_supplicant/wps_supplicant.c +++ b/wpa_supplicant/wps_supplicant.c @@ -2007,6 +2007,7 @@ struct wpabuf * wpas_wps_nfc_handover_req(struct wpa_supplicant *wpa_s, int cr) struct wpabuf * wpas_wps_er_nfc_handover_sel(struct wpa_supplicant *wpa_s, int ndef, const char *uuid) { +#ifdef CONFIG_WPS_ER struct wpabuf *ret; u8 u[UUID_LEN]; @@ -2031,6 +2032,9 @@ struct wpabuf * wpas_wps_er_nfc_handover_sel(struct wpa_supplicant *wpa_s, } return ret; +#else /* CONFIG_WPS_ER */ + return NULL; +#endif /* CONFIG_WPS_ER */ } #endif /* CONFIG_WPS_NFC */