From: Jouni Malinen Date: Sat, 7 Jan 2017 21:35:48 +0000 (+0200) Subject: Make "SET non_pref_chan .." behavior more consistent X-Git-Tag: hostap_2_7~1797 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e3394c0e2c34a5b8870e40ac2fbcfbae7ddc6eaf;p=thirdparty%2Fhostap.git Make "SET non_pref_chan .." behavior more consistent non_pref_chan is a global configuration parameter for wpa_supplicant and the special control interface SET command handler for it was preventing the configuration update. Make this more consistent by updating the configuration parameter as well since that is what all the other SET commands do. Signed-off-by: Jouni Malinen --- diff --git a/wpa_supplicant/ctrl_iface.c b/wpa_supplicant/ctrl_iface.c index be178d7e4..4b5d43c85 100644 --- a/wpa_supplicant/ctrl_iface.c +++ b/wpa_supplicant/ctrl_iface.c @@ -527,6 +527,10 @@ static int wpa_supplicant_ctrl_iface_set(struct wpa_supplicant *wpa_s, #ifdef CONFIG_MBO } else if (os_strcasecmp(cmd, "non_pref_chan") == 0) { ret = wpas_mbo_update_non_pref_chan(wpa_s, value); + if (ret == 0) { + value[-1] = '='; + wpa_config_process_global(wpa_s->conf, cmd, -1); + } } else if (os_strcasecmp(cmd, "mbo_cell_capa") == 0) { wpas_mbo_update_cell_capa(wpa_s, atoi(value)); #endif /* CONFIG_MBO */