diff options
author | Jimmy Chen <jimmycmchen@google.com> | 2020-03-20 02:01:32 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2020-03-20 02:01:32 +0000 |
commit | f017a8442a5a64ed2fe18fc0a64c86acf4b7cce9 (patch) | |
tree | 41aed0b728a6d0ec12a924ef8657c081b0be8995 /service | |
parent | 23800578f2d505f35aa2e40abb3b4c76b944febb (diff) | |
parent | 5de1f8121f567ac7421cd68c24874e9665cc1178 (diff) |
Merge "p2p: fix re-launch wpa_supplicant unintentionally" into rvc-dev
Diffstat (limited to 'service')
-rw-r--r-- | service/java/com/android/server/wifi/p2p/SupplicantP2pIfaceHal.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/service/java/com/android/server/wifi/p2p/SupplicantP2pIfaceHal.java b/service/java/com/android/server/wifi/p2p/SupplicantP2pIfaceHal.java index 7a363bf6e..2d0886188 100644 --- a/service/java/com/android/server/wifi/p2p/SupplicantP2pIfaceHal.java +++ b/service/java/com/android/server/wifi/p2p/SupplicantP2pIfaceHal.java @@ -106,7 +106,7 @@ public class SupplicantP2pIfaceHal { }; private final DeathRecipient mSupplicantDeathRecipient = cookie -> { - Log.w(TAG, "ISupplicant/ISupplicantStaIface died: cookie=" + cookie); + Log.w(TAG, "ISupplicant/ISupplicantP2pIface died: cookie=" + cookie); synchronized (mLock) { supplicantServiceDiedHandler(); } @@ -446,7 +446,7 @@ public class SupplicantP2pIfaceHal { synchronized (mLock) { try { return android.hardware.wifi.supplicant.V1_1.ISupplicant.castFrom( - ISupplicant.getService()); + mISupplicant); } catch (NoSuchElementException e) { Log.e(TAG, "Failed to get ISupplicant", e); return null; |