From dfb60c04367d80230fd959567079c4d6c78d6fac Mon Sep 17 00:00:00 2001 From: Kapil Gupta Date: Tue, 25 Jan 2022 10:36:08 +0530 Subject: [PATCH] wpa_supplicant: Scan resumption in PBC mode --- components/wpa_supplicant/esp_supplicant/src/esp_wps.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/wpa_supplicant/esp_supplicant/src/esp_wps.c b/components/wpa_supplicant/esp_supplicant/src/esp_wps.c index bde5ea0592..7a9d607c01 100644 --- a/components/wpa_supplicant/esp_supplicant/src/esp_wps.c +++ b/components/wpa_supplicant/esp_supplicant/src/esp_wps.c @@ -1,5 +1,5 @@ /* - * SPDX-FileCopyrightText: 2019-2021 Espressif Systems (Shanghai) CO LTD + * SPDX-FileCopyrightText: 2019-2022 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 */ @@ -571,7 +571,7 @@ wps_parse_scan_result(struct wps_scan_ie *scan) } if (!scan->rsn && !scan->wpa && (scan->capinfo & WIFI_CAPINFO_PRIVACY)) { - wpa_printf(MSG_ERROR, "WEP not suppported in WPS"); + wpa_printf(MSG_INFO, "WEP not suppported in WPS"); return false; } @@ -1854,8 +1854,8 @@ wifi_wps_scan_done(void *arg, STATUS status) esp_wifi_connect(); ets_timer_disarm(&sm->wps_msg_timeout_timer); ets_timer_arm(&sm->wps_msg_timeout_timer, 2000, 0); - } else if (wps_get_status() == WPS_STATUS_SCANNING && wps_get_type() == WPS_TYPE_PIN) { - if (sm->scan_cnt > WPS_IGNORE_SEL_REG_MAX_CNT) { + } else if (wps_get_status() == WPS_STATUS_SCANNING) { + if (wps_get_type() == WPS_TYPE_PIN && sm->scan_cnt > WPS_IGNORE_SEL_REG_MAX_CNT) { sm->ignore_sel_reg = true; sm->wps_pin_war = false; }