Merge change 8426

* changes:
  Fix bug# 1997056
This commit is contained in:
Android (Google) Code Review
2009-07-23 17:01:57 -07:00
2 changed files with 4 additions and 4 deletions

View File

@@ -1225,8 +1225,8 @@ public interface CommandsInterface {
* Request the device MDN / H_SID / H_NID / MIN.
* "response" is const char **
* [0] is MDN if CDMA subscription is available
* [1] is H_SID (Home SID) if CDMA subscription is available
* [2] is H_NID (Home NID) if CDMA subscription is available
* [1] is H_SID (Home SID) in hexadecimal if CDMA subscription is available
* [2] is H_NID (Home NID) in hexadecimal if CDMA subscription is available
* [3] is MIN (10 digits, MIN2+MIN1) if CDMA subscription is available
*/
public void getCDMASubscription(Message response);

View File

@@ -401,11 +401,11 @@ final class CdmaServiceStateTracker extends ServiceStateTracker {
// TODO: Only grabbing the first SID/NID for now.
if (cdmaSubscription[1] != null) {
String[] sid = cdmaSubscription[1].split(",");
mHomeSystemId = sid.length > 0 ? Integer.parseInt(sid[0]) : 0;
mHomeSystemId = sid.length > 0 ? Integer.parseInt(sid[0], 16) : 0;
}
if (cdmaSubscription[2] != null) {
String[] nid = cdmaSubscription[2].split(",");
mHomeNetworkId = nid.length > 0 ? Integer.parseInt(nid[0]) : 0;
mHomeNetworkId = nid.length > 0 ? Integer.parseInt(nid[0], 16) : 0;
}
mMin = cdmaSubscription[3];
mPrlVersion = cdmaSubscription[4];