File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
components/wpa_supplicant/src/esp_supplicant Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -194,10 +194,6 @@ void wpa2_task(void *pvParameters )
194
194
195
195
for (;;) {
196
196
if ( pdPASS == xQueueReceive (s_wpa2_queue , & e , portMAX_DELAY ) ) {
197
- #ifdef DEBUG_PRINT
198
- uint32_t sig = 0 ;
199
- sig = e -> sig ;
200
- #endif
201
197
if (e -> sig < SIG_WPA2_MAX ) {
202
198
DATA_MUTEX_TAKE ();
203
199
if (sm -> wpa2_sig_cnt [e -> sig ]) {
@@ -234,7 +230,7 @@ void wpa2_task(void *pvParameters )
234
230
break ;
235
231
} else {
236
232
if (s_wifi_wpa2_sync_sem ) {
237
- wpa_printf (MSG_DEBUG , "WPA2: wifi->wpa2 api completed sig(%d)" , sig );
233
+ wpa_printf (MSG_DEBUG , "WPA2: wifi->wpa2 api completed sig(%d)" , e -> sig );
238
234
xSemaphoreGive (s_wifi_wpa2_sync_sem );
239
235
} else {
240
236
wpa_printf (MSG_ERROR , "WPA2: null wifi->wpa2 sync sem" );
@@ -247,7 +243,7 @@ void wpa2_task(void *pvParameters )
247
243
wpa_printf (MSG_DEBUG , "WPA2: task deleted" );
248
244
s_wpa2_queue = NULL ;
249
245
if (s_wifi_wpa2_sync_sem ) {
250
- wpa_printf (MSG_DEBUG , "WPA2: wifi->wpa2 api completed sig(%d)" , sig );
246
+ wpa_printf (MSG_DEBUG , "WPA2: wifi->wpa2 api completed sig(%d)" , e -> sig );
251
247
xSemaphoreGive (s_wifi_wpa2_sync_sem );
252
248
} else {
253
249
wpa_printf (MSG_ERROR , "WPA2: null wifi->wpa2 sync sem" );
You can’t perform that action at this time.
0 commit comments