blob: 4807727e0e59ee4fb4092deace4fcbb654c1c160 [file] [log] [blame]
developer4e0da232022-05-09 13:05:53 +08001--- a/wpa_supplicant/wpa_supplicant.c
2+++ b/wpa_supplicant/wpa_supplicant.c
3@@ -2512,11 +2512,13 @@ void ibss_mesh_setup_freq(struct wpa_sup
4 for (j = 0; j < wpa_s->last_scan_res_used; j++) {
5 struct wpa_bss *bss = wpa_s->last_scan_res[j];
6
7- if (ssid->mode != WPAS_MODE_IBSS)
8+ /* Don't adjust control freq in case of fixed_freq */
9+ if (ssid->fixed_freq) {
10+ obss_scan = 0;
11 break;
12+ }
13
14- /* Don't adjust control freq in case of fixed_freq */
15- if (ssid->fixed_freq)
16+ if (ssid->mode != WPAS_MODE_IBSS)
17 break;
18
19 if (!bss_is_ibss(bss))