summaryrefslogtreecommitdiff
path: root/service
diff options
context:
space:
mode:
authorKumar Anand <kumaranand@google.com>2020-06-10 14:37:19 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2020-06-10 14:37:19 +0000
commitec47b27101cda0b02d5d337f54fc1189739145c9 (patch)
tree96e24acd017a004fdcc06468dae4d1b26e033dc4 /service
parentb3db14213765d1959f883e5ea6bde1d203d80338 (diff)
parentfa38898591c8001f6bea988d4a227122c0bb013b (diff)
Merge "wifi: handle EAP session renewing case" into rvc-dev
Diffstat (limited to 'service')
-rw-r--r--service/java/com/android/server/wifi/ClientModeImpl.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/service/java/com/android/server/wifi/ClientModeImpl.java b/service/java/com/android/server/wifi/ClientModeImpl.java
index e10d5367e..10a41f5dc 100644
--- a/service/java/com/android/server/wifi/ClientModeImpl.java
+++ b/service/java/com/android/server/wifi/ClientModeImpl.java
@@ -5852,6 +5852,9 @@ public class ClientModeImpl extends StateMachine {
&& mTargetWifiConfiguration.networkId
== requestData.networkId) {
logd("id matches targetWifiConfiguration");
+ } else if (mLastNetworkId != WifiConfiguration.INVALID_NETWORK_ID
+ && mLastNetworkId == requestData.networkId) {
+ logd("id matches currentWifiConfiguration");
} else {
logd("id does not match targetWifiConfiguration");
return;