mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-22 03:45:25 +00:00
Monotone-Parent: aeb6c6e374c725f1249d84119e6cc1b7ce8d1f1a
Monotone-Revision: c0c3d56a3486d587b4e272a42efcc42e8a77897e Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2011-10-21T23:44:29 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2011-10-21 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* OpenChange/plreader.m (PLReaderDumpPListFile): ignore "error" if
|
||||
the returned property list object is not nil, since "error" might
|
||||
still be set with GNUstep.
|
||||
|
||||
2011-10-19 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* OpenChange/MAPIStoreDraftsMessage.m (-getPrDisplayTo:inMemCtx:)
|
||||
|
||||
@@ -153,9 +153,7 @@ PLReaderDumpPListFile (NSString *filename)
|
||||
mutabilityOption: NSPropertyListImmutable
|
||||
format: &format
|
||||
errorDescription: &error];
|
||||
if (error)
|
||||
printf ("an error occurred: %s\n", [error UTF8String]);
|
||||
else
|
||||
if (d)
|
||||
{
|
||||
switch (format)
|
||||
{
|
||||
@@ -181,6 +179,8 @@ PLReaderDumpPListFile (NSString *filename)
|
||||
[d displayWithIndentation: 0];
|
||||
printf ("\n");
|
||||
}
|
||||
else
|
||||
printf ("an error occurred: %s\n", [error UTF8String]);
|
||||
}
|
||||
|
||||
int main()
|
||||
|
||||
Reference in New Issue
Block a user