summaryrefslogtreecommitdiffstats
path: root/wifi
diff options
context:
space:
mode:
authorPrimiano Tucci <primiano@google.com>2014-10-08 12:02:48 +0100
committerPrimiano Tucci <primiano@google.com>2014-10-08 12:20:12 +0100
commit73a648990f0e126af49af5be1049255019d33e12 (patch)
treeaffbc60bff70d21872ae34a6dbb7830127df08d6 /wifi
parent5dfe236081fd710d1bfe5f2d38002c4154168141 (diff)
downloadframeworks_base-73a648990f0e126af49af5be1049255019d33e12.zip
frameworks_base-73a648990f0e126af49af5be1049255019d33e12.tar.gz
frameworks_base-73a648990f0e126af49af5be1049255019d33e12.tar.bz2
Fix the "Fix broken merge of "handle bssid blacklist in case of dhcp failures""
The change Iad35fb8dc2ce14874ef7424c4be5648ca7ac916c (Fix broken merge of ...) seem be a partial resolution of Iba13db478ed69976c37bd4882f59bf0cae2212e6: the parcel ser/des lines are missing. This is causing today a merge conflict (lmp-dev -> master) on a dependent change (I89b4f5c05a1f64f9d1e8c407f62036efa0265043), which is confused by the lack of the parcel ser/des lines. I think this was a genuine mistakes. Readding these lines should make the conflict go away and fix master. Change-Id: I8499b9caeb1667f95727fdd18f318c5859a2321e
Diffstat (limited to 'wifi')
-rw-r--r--wifi/java/android/net/wifi/ScanResult.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/wifi/java/android/net/wifi/ScanResult.java b/wifi/java/android/net/wifi/ScanResult.java
index c472536..7a95b70 100644
--- a/wifi/java/android/net/wifi/ScanResult.java
+++ b/wifi/java/android/net/wifi/ScanResult.java
@@ -338,6 +338,7 @@ public class ScanResult implements Parcelable {
dest.writeInt(untrusted ? 1 : 0);
dest.writeInt(numConnection);
dest.writeInt(numUsage);
+ dest.writeInt(numIpConfigFailures);
if (passpoint != null) {
dest.writeInt(1);
passpoint.writeToParcel(dest, flags);
@@ -379,6 +380,7 @@ public class ScanResult implements Parcelable {
sr.untrusted = in.readInt() != 0;
sr.numConnection = in.readInt();
sr.numUsage = in.readInt();
+ sr.numIpConfigFailures = in.readInt();
if (in.readInt() == 1) {
sr.passpoint = WifiPasspointInfo.CREATOR.createFromParcel(in);
}