From: helge Date: Sun, 29 Aug 2004 22:07:37 +0000 (+0000) Subject: fixed yet another bug in NGBundleManager path lookup X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4973bb44f4bbd0df5751c1299b6fdef2abd25c2c;p=sope fixed yet another bug in NGBundleManager path lookup git-svn-id: http://svn.opengroupware.org/SOPE/trunk@89 e4a50df8-12e2-0310-a44c-efbce7f8a7e3 --- diff --git a/sope-core/NGExtensions/ChangeLog b/sope-core/NGExtensions/ChangeLog index ddbb2d66..5c7b98bc 100644 --- a/sope-core/NGExtensions/ChangeLog +++ b/sope-core/NGExtensions/ChangeLog @@ -1,3 +1,8 @@ +2004-08-30 Helge Hess + + * NGBundleManager.m: fixed yet another bug in NGBundleManager path + lookup (v4.3.111) + 2004-08-29 Helge Hess * NGBundleManager.m: fixed an issue when running without GNUstep diff --git a/sope-core/NGExtensions/NGBundleManager.m b/sope-core/NGExtensions/NGBundleManager.m index 6737371f..3d1fbdab 100644 --- a/sope-core/NGExtensions/NGBundleManager.m +++ b/sope-core/NGExtensions/NGBundleManager.m @@ -331,7 +331,7 @@ static BOOL debugOn = NO; tmp = [env objectForKey:@"GNUSTEP_PATHLIST"]; tmp = [tmp componentsSeparatedByString:@":"]; - for (i = 0; i < count; i++) { + for (i = 0, count = [tmp count]; i < count; i++) { p = [tmp objectAtIndex:i]; p = [p stringByAppendingPathComponent:@"Library"]; p = [p stringByAppendingPathComponent:@"Bundles"]; diff --git a/sope-core/NGExtensions/Version b/sope-core/NGExtensions/Version index 8e0992af..b2e6649f 100644 --- a/sope-core/NGExtensions/Version +++ b/sope-core/NGExtensions/Version @@ -1,5 +1,5 @@ # $Id$ -SUBMINOR_VERSION:=110 +SUBMINOR_VERSION:=111 # v4.2.72 requires libEOControl v4.2.39