|
@@ -71,8 +71,10 @@ int wpas_wps_eapol_cb(struct wpa_supplicant *wpa_s)
|
|
|
if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPS && wpa_s->current_ssid &&
|
|
|
!(wpa_s->current_ssid->key_mgmt & WPA_KEY_MGMT_WPS)) {
|
|
|
int disabled = wpa_s->current_ssid->disabled;
|
|
|
+ unsigned int freq = wpa_s->assoc_freq;
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Network configuration replaced - "
|
|
|
- "try to associate with the received credential");
|
|
|
+ "try to associate with the received credential "
|
|
|
+ "(freq=%u)", freq);
|
|
|
wpa_supplicant_deauthenticate(wpa_s,
|
|
|
WLAN_REASON_DEAUTH_LEAVING);
|
|
|
if (disabled) {
|
|
@@ -81,7 +83,7 @@ int wpas_wps_eapol_cb(struct wpa_supplicant *wpa_s)
|
|
|
return 1;
|
|
|
}
|
|
|
wpa_s->after_wps = 5;
|
|
|
- wpa_s->wps_freq = wpa_s->assoc_freq;
|
|
|
+ wpa_s->wps_freq = freq;
|
|
|
wpa_s->normal_scans = 0;
|
|
|
wpa_s->reassociate = 1;
|
|
|
wpa_supplicant_req_scan(wpa_s, 0, 0);
|