From 210e7acf82767d37b535aa28b68b7e3b67c1da90 Mon Sep 17 00:00:00 2001 From: Chung-yih Wang Date: Mon, 14 Sep 2009 14:25:09 +0800 Subject: Transient patch for the WifiConfiguration change. Comment out the access to the enterprise fields of WifiConfiguration class in AccessPointState class. And will have a new patch for accessing the new WifiConfiguration. --- src/com/android/settings/wifi/AccessPointState.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/com/android/settings/wifi/AccessPointState.java b/src/com/android/settings/wifi/AccessPointState.java index a3cf6b4..f842b7e 100644 --- a/src/com/android/settings/wifi/AccessPointState.java +++ b/src/com/android/settings/wifi/AccessPointState.java @@ -504,6 +504,7 @@ public final class AccessPointState implements Comparable, Par config.priority = priority; config.hiddenSSID = hiddenSsid; config.SSID = convertToQuotedString(ssid); +/* config.eap = mEap; if (!TextUtils.isEmpty(mPhase2)) { @@ -547,6 +548,7 @@ public final class AccessPointState implements Comparable, Par } else { config.privateKeyPasswd = null; } +*/ setupSecurity(config); } @@ -622,7 +624,7 @@ public final class AccessPointState implements Comparable, Par config.allowedKeyManagement.set(KeyMgmt.IEEE8021X); } if (!TextUtils.isEmpty(mPassword)) { - config.password = convertToQuotedString(mPassword); +// config.password = convertToQuotedString(mPassword); } } } -- cgit v1.1