hostapd: update to git HEAD of 2018-05-21, allow build against wolfssl
[openwrt/openwrt.git] / package / network / services / hostapd / patches / 014-mesh-do-not-allow-scan-result-to-swap-pri-sec.patch
1 From cf2ba81fb307f3e87e13896f9dbf93c0c2a9eb92 Mon Sep 17 00:00:00 2001
2 From: Peter Oh <peter.oh@bowerswilkins.com>
3 Date: Tue, 17 Apr 2018 21:55:11 -0700
4 Subject: [PATCH 14/16] mesh: do not allow scan result to swap pri/sec
5
6 Swapping between primary and secondary channel will break
7 mesh from joining, hence don't allow it.
8
9 Signed-off-by: Peter Oh <peter.oh@bowerswilkins.com>
10 ---
11 wpa_supplicant/wpa_supplicant.c | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
13
14 --- a/wpa_supplicant/wpa_supplicant.c
15 +++ b/wpa_supplicant/wpa_supplicant.c
16 @@ -2165,7 +2165,7 @@ void ibss_mesh_setup_freq(struct wpa_sup
17 }
18 freq->sec_channel_offset = ht40;
19
20 - if (obss_scan) {
21 + if (ssid->mode != WPAS_MODE_MESH && obss_scan) {
22 struct wpa_scan_results *scan_res;
23
24 scan_res = wpa_supplicant_get_scan_results(wpa_s, NULL, 0);