git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@3232 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 1998-11-18 09:07:59 +00:00
parent 523ecef179
commit c386e91357

View file

@ -303,12 +303,13 @@ validateEntry(id svcs, NSString *path)
for (pos = 0; pos < [services count]; pos++)
{
id svc;
NSDictionary *service;
NSMutableDictionary *newService;
svc = [services objectAtIndex: pos];
if ([svc isKindOfClass: [NSDictionary class]])
{
NSDictionary *service = (NSDictionary*)svc;
NSMutableDictionary *newService;
newService = validateService(service, path, pos);
if (newService)
{