mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-19 10:25:27 +00:00
Monotone-Parent: f192e1f1ce3ef4fc536470409d175d3bc7cb4bad
Monotone-Revision: 75575dc685de1258c4ba450e53c12e11c7954b71 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2012-03-12T05:57:15 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
2012-03-12 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* OpenChange/MAPIStoreFolder.m
|
||||
(-getPidTagLocalCommitTimeMax:inMemCtx:): returns
|
||||
MAPISTORE_ERR_NOT_FOUND if the resulting date is nil.
|
||||
|
||||
* OpenChange/MAPIStoreGCSMessage.m
|
||||
(-getPidTagPredecessorChangeList:inMemCtx:): when the list is
|
||||
missing, request a synchronisation from the container as the
|
||||
|
||||
@@ -1261,9 +1261,16 @@ Class NSExceptionK, MAPIStoreFAIMessageK, MAPIStoreMessageTableK, MAPIStoreFAIMe
|
||||
- (int) getPidTagLocalCommitTimeMax: (void **) data
|
||||
inMemCtx: (TALLOC_CTX *) memCtx
|
||||
{
|
||||
*data = [[self lastMessageModificationTime] asFileTimeInMemCtx: memCtx];
|
||||
int rc = MAPISTORE_SUCCESS;
|
||||
NSDate *date;
|
||||
|
||||
return MAPISTORE_SUCCESS;
|
||||
date = [self lastMessageModificationTime];
|
||||
if (date)
|
||||
*data = [date asFileTimeInMemCtx: memCtx];
|
||||
else
|
||||
rc = MAPISTORE_ERR_NOT_FOUND;
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
||||
- (int) getProperty: (void **) data
|
||||
|
||||
Reference in New Issue
Block a user