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:
Wolfgang Sourdeau
2012-03-12 05:57:15 +00:00
parent 1e51850d6e
commit e8917905b8
2 changed files with 13 additions and 2 deletions
+4
View File
@@ -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
+9 -2
View File
@@ -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