am 8ecd2aec: Merge change 23548 into eclair

Merge commit '8ecd2aecf66010e974d9125f40282168be76b440' into eclair-plus-aosp

* commit '8ecd2aecf66010e974d9125f40282168be76b440':
  Fix some sign in errors.
This commit is contained in:
jsh
2009-09-02 13:05:05 -07:00
committed by Android Git Automerger
2 changed files with 4 additions and 1 deletions

View File

@@ -1397,7 +1397,7 @@ public class AccountManagerService extends IAccountManager.Stub {
Log.v(TAG, "current IMSI=" + imsi + "; stored IMSI=" + storedImsi);
}
if (!imsi.equals(storedImsi) && !"initial".equals(storedImsi)) {
if (!imsi.equals(storedImsi) && !TextUtils.isEmpty(storedImsi)) {
if (Log.isLoggable(TAG, Log.VERBOSE)) {
Log.v(TAG, "wiping all passwords and authtokens");
}