Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cd5afc3b authored by Sravanthi Palakonda's avatar Sravanthi Palakonda
Browse files

wifi: Modify the default value of SIMNum to 0 instead of 1.

sim_num value in conf file has to be updated only if it has
non zero value.In order to check this, the default value of
SIMNum is modified to 0 instead of 1, otherwise the existing
sim_num value is overwritten with the default value which
in turn makes the supplicant to always authenticate with
the default sim_num 1

Change-Id: I47d0fb00c98c3cef37548ee595b3862ee6137e95
CRs-Fixed: 780903
parent 9b7846bb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -844,7 +844,7 @@ public class WifiConfiguration implements Parcelable {
        noInternetAccess = false;
        mIpConfiguration = new IpConfiguration();
        duplicateNetwork = false;
        SIMNum = 1;
        SIMNum = 0;
    }

    /**