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

Commit c324d336 authored by Chung-yih Wang's avatar Chung-yih Wang Committed by Android Git Automerger
Browse files

am c7163cbf: am 533844d9: am c7388e35: am 5f1beda1: Merge "Make the SSID field...

am c7163cbf: am 533844d9: am c7388e35: am 5f1beda1: Merge "Make the SSID field of WifiConfiguration consistent with API description." into froyo
parents 7ac5618c c7163cbf
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -872,7 +872,7 @@ public class WifiService extends IWifiManager.Stub {

        value = mWifiStateTracker.getNetworkVariable(netId, WifiConfiguration.ssidVarName);
        if (!TextUtils.isEmpty(value)) {
            config.SSID = removeDoubleQuotes(value);
            config.SSID = value;
        } else {
            config.SSID = null;
        }
@@ -1062,7 +1062,7 @@ public class WifiService extends IWifiManager.Stub {
                    !mWifiStateTracker.setNetworkVariable(
                        netId,
                        WifiConfiguration.ssidVarName,
                        convertToQuotedString(config.SSID))) {
                        config.SSID)) {
                if (DBG) {
                    Slog.d(TAG, "failed to set SSID: "+config.SSID);
                }