Merge "Fix GAL lookup for provisioned EAS accounts" into froyo

This commit is contained in:
Marc Blank 2010-04-08 17:29:00 -07:00 committed by Android (Google) Code Review
commit 66bbd95a01

View File

@ -706,6 +706,7 @@ public class EasSyncService extends AbstractSyncService {
svc.mSsl = (ha.mFlags & HostAuth.FLAG_SSL) != 0; svc.mSsl = (ha.mFlags & HostAuth.FLAG_SSL) != 0;
svc.mTrustSsl = (ha.mFlags & HostAuth.FLAG_TRUST_ALL_CERTIFICATES) != 0; svc.mTrustSsl = (ha.mFlags & HostAuth.FLAG_TRUST_ALL_CERTIFICATES) != 0;
svc.mDeviceId = SyncManager.getDeviceId(); svc.mDeviceId = SyncManager.getDeviceId();
svc.mAccount = acct;
Serializer s = new Serializer(); Serializer s = new Serializer();
s.start(Tags.SEARCH_SEARCH).start(Tags.SEARCH_STORE); s.start(Tags.SEARCH_SEARCH).start(Tags.SEARCH_STORE);
s.data(Tags.SEARCH_NAME, "GAL").data(Tags.SEARCH_QUERY, filter); s.data(Tags.SEARCH_NAME, "GAL").data(Tags.SEARCH_QUERY, filter);