mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-02-24 18:56:24 +00:00
Replaced all references to 0xffffffffffffffff/0xffffffffffffffffLL with ULLONG_MAX
Monotone-Parent: 04a0346af8290ab531d44883c56b4b27443baade Monotone-Revision: d7e6ea19eaf3a8552c44ce60ed58b2efa54b9a27 Monotone-Author: ludovic@Sophos.ca Monotone-Date: 2011-10-07T18:30:15 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -354,7 +354,7 @@ static Class NSExceptionK, MAPIStoreFolderK;
|
||||
{
|
||||
[self subclassResponsibility: _cmd];
|
||||
|
||||
return 0xffffffffffffffffLL;
|
||||
return ULLONG_MAX;
|
||||
}
|
||||
|
||||
- (int) getPrChangeKey: (void **) data
|
||||
@@ -364,7 +364,7 @@ static Class NSExceptionK, MAPIStoreFolderK;
|
||||
uint64_t obVersion;
|
||||
|
||||
obVersion = [self objectVersion];
|
||||
if (obVersion == 0xffffffffffffffffLL)
|
||||
if (obVersion == ULLONG_MAX)
|
||||
rc = MAPISTORE_ERR_NOT_FOUND;
|
||||
else
|
||||
rc = [self getReplicaKey: data fromGlobCnt: obVersion
|
||||
@@ -380,7 +380,7 @@ static Class NSExceptionK, MAPIStoreFolderK;
|
||||
uint64_t obVersion;
|
||||
|
||||
obVersion = [self objectVersion];
|
||||
if (obVersion == 0xffffffffffffffffLL)
|
||||
if (obVersion == ULLONG_MAX)
|
||||
rc = MAPISTORE_ERR_NOT_FOUND;
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user