Browse Source

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 <jouni@qca.qualcomm.com>
Jouni Malinen 12 years ago
parent
commit
87470ea298
1 changed files with 4 additions and 0 deletions
  1. 4 0
      wpa_supplicant/ap.c

+ 4 - 0
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 */