From: Daniel Golle Date: Wed, 23 Jan 2019 05:18:25 +0000 (+0100) Subject: Write multi_ap_backhaul_sta to wpa_supplicant config X-Git-Tag: hostap_2_8~508 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0dab477335d9ea8d71bdb631aab7483542ed1bd0;p=thirdparty%2Fhostap.git Write multi_ap_backhaul_sta to wpa_supplicant config The network configration option multi_ap_backhaul_sta was added without adding it to wpa_config_write_network(). Hence the value of this option was not included when writing the configuration file. Fix this by including it in wpa_config_write_network(). Fixes: 5abc7823b ("wpa_supplicant: Add Multi-AP backhaul STA support") Signed-off-by: Daniel Golle --- diff --git a/wpa_supplicant/config_file.c b/wpa_supplicant/config_file.c index 85a393725..9b14699ae 100644 --- a/wpa_supplicant/config_file.c +++ b/wpa_supplicant/config_file.c @@ -891,6 +891,7 @@ static void wpa_config_write_network(FILE *f, struct wpa_ssid *ssid) #endif /* CONFIG_DPP */ INT(owe_group); INT(owe_only); + INT(multi_ap_backhaul_sta); #ifdef CONFIG_HT_OVERRIDES INT_DEF(disable_ht, DEFAULT_DISABLE_HT); INT_DEF(disable_ht40, DEFAULT_DISABLE_HT40);