]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
Fix CONFIG_AP=y build without CONFIG_CTRL_IFACE
authorJouni Malinen <j@w1.fi>
Sat, 4 Apr 2015 08:56:53 +0000 (11:56 +0300)
committerJouni Malinen <j@w1.fi>
Sat, 4 Apr 2015 08:56:53 +0000 (11:56 +0300)
Signed-off-by: Jouni Malinen <j@w1.fi>
wpa_supplicant/ap.c

index 7ecf7a85c30861b6da733f7cd428ea30e6928a61..bfb69fc8c6058b4080c79dae01cd74de06b4068f 100644 (file)
@@ -1156,6 +1156,7 @@ int ap_switch_channel(struct wpa_supplicant *wpa_s,
 }
 
 
+#ifdef CONFIG_CTRL_IFACE
 int ap_ctrl_iface_chanswitch(struct wpa_supplicant *wpa_s, const char *pos)
 {
        struct csa_settings settings;
@@ -1166,6 +1167,7 @@ int ap_ctrl_iface_chanswitch(struct wpa_supplicant *wpa_s, const char *pos)
 
        return ap_switch_channel(wpa_s, &settings);
 }
+#endif /* CONFIG_CTRL_IFACE */
 
 
 void wpas_ap_ch_switch(struct wpa_supplicant *wpa_s, int freq, int ht,
@@ -1265,6 +1267,7 @@ int wpas_ap_wps_add_nfc_pw(struct wpa_supplicant *wpa_s, u16 pw_id,
 #endif /* CONFIG_WPS_NFC */
 
 
+#ifdef CONFIG_CTRL_IFACE
 int wpas_ap_stop_ap(struct wpa_supplicant *wpa_s)
 {
        struct hostapd_data *hapd;
@@ -1274,6 +1277,7 @@ int wpas_ap_stop_ap(struct wpa_supplicant *wpa_s)
        hapd = wpa_s->ap_iface->bss[0];
        return hostapd_ctrl_iface_stop_ap(hapd);
 }
+#endif /* CONFIG_CTRL_IFACE */
 
 
 #ifdef NEED_AP_MLME