diff mbox

[1/1] WPS: Cancel scheduled scan before attempting a scan in WPS NFC Config token case

Message ID 20131008122118.GA25891@jithu@broadcom.com
State Accepted
Commit 7e910b7b51807877c9ce9ca2bc2568060cb3be56
Headers show

Commit Message

Jithu Jance Oct. 8, 2013, 12:21 p.m. UTC
WPS: Cancel scheduled scan (if any) before attempting
to scan for the newly received configuration/credential.

Signed-hostap: Jithu Jance <jithu@broadcom.com>

---
 wpa_supplicant/wps_supplicant.c |    2 ++
 1 file changed, 2 insertions(+)

--
1.7.9.5

Comments

Jouni Malinen Oct. 14, 2013, 6:17 p.m. UTC | #1
On Tue, Oct 08, 2013 at 05:51:18PM +0530, Jithu Jance wrote:
> WPS: Cancel scheduled scan (if any) before attempting
> to scan for the newly received configuration/credential.

Thanks, applied.
diff mbox

Patch

diff --git a/wpa_supplicant/wps_supplicant.c b/wpa_supplicant/wps_supplicant.c
index f6c2fcb..a2b941c 100644
--- a/wpa_supplicant/wps_supplicant.c
+++ b/wpa_supplicant/wps_supplicant.c
@@ -2174,6 +2174,8 @@  static int wpas_wps_use_cred(struct wpa_supplicant *wpa_s,
 	}
 	wpa_s->disconnected = 0;
 	wpa_s->reassociate = 1;
+
+	wpa_supplicant_cancel_sched_scan(wpa_s);
 	wpa_supplicant_req_scan(wpa_s, 0, 0);

 	return 0;