Remove upstreamed patch: - 001-PASN-Fix-the-compilation-errors-without-CONFIG_PASN.patch Add patch: - 001-RSN-Fix-pmksa_cache_flush-prototype-mismatch-in-non-.patch Link: https://github.com/openwrt/openwrt/pull/22517 Signed-off-by: Nick Hainke <vincent@systemli.org>
19 lines
507 B
Diff
19 lines
507 B
Diff
From: Felix Fietkau <nbd@nbd.name>
|
|
Date: Tue, 14 Nov 2017 12:38:08 +0100
|
|
Subject: [PATCH] Fix issues with disabling obss scan when using fixed_freq on
|
|
mesh
|
|
|
|
--- a/wpa_supplicant/wpa_supplicant.c
|
|
+++ b/wpa_supplicant/wpa_supplicant.c
|
|
@@ -3553,6 +3553,10 @@ void ibss_mesh_setup_freq(struct wpa_sup
|
|
|
|
freq->freq = ssid->frequency;
|
|
|
|
+ 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);
|
|
|