hostapd: update to 2023-03-29
[openwrt/staging/dedeckeh.git] / package / network / services / hostapd / patches / 464-fix-mesh-obss-check.patch
index 48682abd04ce5be8c530fe46a13b30d54c239e6f..73ccc65ad985ec8263883e59e55d395cdea50d3c 100644 (file)
@@ -1,19 +1,13 @@
 --- a/wpa_supplicant/wpa_supplicant.c
 +++ b/wpa_supplicant/wpa_supplicant.c
-@@ -2095,11 +2095,13 @@ void ibss_mesh_setup_freq(struct wpa_sup
-       for (j = 0; j < wpa_s->last_scan_res_used; j++) {
-               struct wpa_bss *bss = wpa_s->last_scan_res[j];
+@@ -3077,6 +3077,10 @@ void ibss_mesh_setup_freq(struct wpa_sup
  
--              if (ssid->mode != WPAS_MODE_IBSS)
-+              /* Don't adjust control freq in case of fixed_freq */
-+              if (ssid->fixed_freq) {
-+                      obss_scan = 0;
-                       break;
-+              }
+       freq->freq = ssid->frequency;
  
--              /* Don't adjust control freq in case of fixed_freq */
--              if (ssid->fixed_freq)
-+              if (ssid->mode != WPAS_MODE_IBSS)
-                       break;
++      if (ssid->fixed_freq) {
++              obss_scan = 0;
++      }
++
+       if (ssid->mode == WPAS_MODE_IBSS && !ssid->fixed_freq) {
+               struct wpa_bss *bss = ibss_find_existing_bss(wpa_s, ssid);
  
-               if (!bss_is_ibss(bss))