From: Jouni Malinen Date: Wed, 30 Jan 2019 10:28:43 +0000 (+0200) Subject: DPP: Clear dpp_listen_freq on remain-on-channel failure X-Git-Tag: hostap_2_8~486 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d8c20ec5912c8cfa93e5be623af467f89f55b888;p=thirdparty%2Fhostap.git DPP: Clear dpp_listen_freq on remain-on-channel failure If the DPP_LISTEN command failed due to the driver rejecting the remain-on-channel request, wpa_s->dpp_listen_freq was left set to the requested listen frequency and this resulted in the next DPP_LISTEN for the same frequency reporting "DPP: Already listening on .." even when the driver was not really listening on that frequency. Fix this by clearing wpa_s->dpp_listen_freq in the error case. Signed-off-by: Jouni Malinen --- diff --git a/wpa_supplicant/dpp_supplicant.c b/wpa_supplicant/dpp_supplicant.c index 7bc46610a..b6a667173 100644 --- a/wpa_supplicant/dpp_supplicant.c +++ b/wpa_supplicant/dpp_supplicant.c @@ -942,6 +942,7 @@ static void dpp_start_listen_cb(struct wpa_radio_work *work, int deinit) wpa_printf(MSG_DEBUG, "DPP: Failed to request the driver to remain on channel (%u MHz) for listen", lwork->freq); + wpa_s->dpp_listen_freq = 0; wpas_dpp_listen_work_done(wpa_s); wpa_s->dpp_pending_listen_freq = 0; return;