OSDN Git Service

No quotes for password
authorIrfan Sheriff <isheriff@google.com>
Mon, 24 May 2010 21:57:45 +0000 (14:57 -0700)
committerIrfan Sheriff <isheriff@google.com>
Wed, 26 May 2010 19:53:24 +0000 (12:53 -0700)
Putting quotes for password in soft AP is not useful.
It simplifies processing in framework.

Bug: 2708960
Change-Id: If44aeb336732aa8089d3e401b546ebf9b3cbd25a

src/com/android/settings/wifi/WifiApDialog.java

index b7ca4fc..43289d2 100644 (file)
@@ -78,7 +78,7 @@ class WifiApDialog extends AlertDialog implements View.OnClickListener,
          * This is not the case on the client side. We need to
          * make things consistent and clean it up
          */
-        config.SSID = mSsid.getText().toString().replaceAll("\"","");
+        config.SSID = mSsid.getText().toString();
 
         switch (mSecurityType) {
             case AccessPoint.SECURITY_NONE:
@@ -90,11 +90,7 @@ class WifiApDialog extends AlertDialog implements View.OnClickListener,
                 config.allowedAuthAlgorithms.set(AuthAlgorithm.OPEN);
                 if (mPassword.length() != 0) {
                     String password = mPassword.getText().toString();
-                    if (password.matches("[0-9A-Fa-f]{64}")) {
-                        config.preSharedKey = password;
-                    } else {
-                        config.preSharedKey = '"' + password + '"';
-                    }
+                    config.preSharedKey = password;
                 }
                 return config;
         }
@@ -128,9 +124,6 @@ class WifiApDialog extends AlertDialog implements View.OnClickListener,
                   break;
               case AccessPoint.SECURITY_PSK:
                   String str = mWifiConfig.preSharedKey;
-                  if (!str.matches("[0-9A-Fa-f]{64}")) {
-                     str = str.substring(1,str.length()-1);
-                  }
                   mPassword.setText(str);
                   mSecurity.setSelection(WPA_INDEX);
                   break;