Skip to content

Commit 07bde72

Browse files
author
Jean-Baptiste Queru
committed
resolved conflicts for merge of 9455f8f to jb-mr1-dev
Change-Id: I6c6970adb58ac45473c7cc665d99f8e8a6ca8571
2 parents 4d3a7b0 + 9455f8f commit 07bde72

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

wifi/java/android/net/wifi/WifiStateMachine.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3553,7 +3553,12 @@ public boolean processMessage(Message message) {
35533553
handleNetworkDisconnect();
35543554
break;
35553555
case WifiMonitor.AUTHENTICATION_FAILURE_EVENT:
3556-
// EAP failures do not mean much during WPS
3556+
// Disregard auth failure events during WPS connection. The
3557+
// EAP sequence is retried several times, and there might be
3558+
// failures (especially for wps pin). We will get a WPS_XXX
3559+
// event at the end of the sequence anyway.
3560+
if (DBG) log("Ignore auth failure during WPS connection");
3561+
break;
35573562
case WifiMonitor.SUPPLICANT_STATE_CHANGE_EVENT:
35583563
//Throw away supplicant state changes when WPS is running.
35593564
//We will start getting supplicant state changes once we get

0 commit comments

Comments
 (0)