mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-12 23:15:26 +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:
@@ -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