Browse Source

SME: Request a new scan if SME association command fails

This handles some error cases without getting stuck waiting for new
events from the driver if association command fails for any reason.
Jouni Malinen 15 years ago
parent
commit
b85e772449
1 changed files with 1 additions and 0 deletions
  1. 1 0
      wpa_supplicant/sme.c

+ 1 - 0
wpa_supplicant/sme.c

@@ -314,6 +314,7 @@ void sme_event_auth(struct wpa_supplicant *wpa_s, union wpa_event_data *data)
 	if (wpa_drv_associate(wpa_s, &params) < 0) {
 		wpa_msg(wpa_s, MSG_INFO, "Association request to the driver "
 			"failed");
+		wpa_supplicant_req_scan(wpa_s, 5, 0);
 		return;
 	}