Monotone-Parent: eda5c525a4bff80cf6f3bc99808aeca62b525c78

Monotone-Revision: f547e80f0b37a2309a16da53656017a4ee10f80b

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-10-18T01:13:45
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2011-10-18 01:13:45 +00:00
parent b68e3b5455
commit e376b60c66
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
* OpenChange/MAPIStoreSOGo.m (sogo_backend_init): invoke
-[NSProcessInfo initializeWithArguments:count:environment:] in
order to avoid an infinite loop with GNUstep occurring under
strange circumstances.
strange circumstances. Make use of "samba" as process name.
* OpenChange/MAPIStoreMapping.m (-initForUsername:withIndexing:):
attach the struct tdb_wrap *indexing to a new memCtx ivar, in
+3 -2
View File
@@ -70,6 +70,7 @@ sogo_backend_init (void)
Class MAPIApplicationK;
NSUserDefaults *ud;
SoProductRegistry *registry;
char *argv0 = "openchange";
pool = [NSAutoreleasePool new];
@@ -78,8 +79,8 @@ sogo_backend_init (void)
the encoding specified in the file. */
putenv ("GNUSTEP_STRING_ENCODING=NSUTF8StringEncoding");
[NSProcessInfo initializeWithArguments: NULL
count: 0
[NSProcessInfo initializeWithArguments: &argv0
count: 1
environment: environ];
[SOGoSystemDefaults sharedSystemDefaults];