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

Commit 5f1beda1 authored by Chung-yih Wang's avatar Chung-yih Wang Committed by Android (Google) Code Review
Browse files

Merge "Make the SSID field of WifiConfiguration consistent with API description." into froyo

parents aa77de13 047076d1
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);
                }