|
@@ -951,6 +951,7 @@ static int wpa_supplicant_need_to_roam(struct wpa_supplicant *wpa_s,
|
|
|
if (!current_bss)
|
|
|
return 1; /* current BSS not seen in scan results */
|
|
|
|
|
|
+#ifndef CONFIG_NO_ROAMING
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "Considering within-ESS reassociation");
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "Current BSS: " MACSTR " level=%d",
|
|
|
MAC2STR(current_bss->bssid), current_bss->level);
|
|
@@ -985,6 +986,9 @@ static int wpa_supplicant_need_to_roam(struct wpa_supplicant *wpa_s,
|
|
|
}
|
|
|
|
|
|
return 1;
|
|
|
+#else /* CONFIG_NO_ROAMING */
|
|
|
+ return 0;
|
|
|
+#endif /* CONFIG_NO_ROAMING */
|
|
|
}
|
|
|
|
|
|
|