See ChangeLog

Monotone-Parent: 707f11d374470774389d0ad41fc35614be923164
Monotone-Revision: d5f67d6e4d96fb56aedcbaef7a68bdf915d7ad8c

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2009-05-05T19:58:33
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Francis Lachapelle
2009-05-05 19:58:33 +00:00
parent 0100fbd018
commit 43c54e6898
4 changed files with 11 additions and 3 deletions
+3 -2
View File
@@ -238,14 +238,15 @@ _timeValue (NSString *key)
user = [cache userNamed: newLogin];
if (!user)
{
user = [[self alloc] initWithLogin: newLogin roles: newRoles trust: b];
user = [[self alloc] initWithLogin: newLogin roles: newRoles trust: b];
if (user)
{
[user autorelease];
[cache registerUser: user];
}
}
[user setPrimaryRoles: newRoles];
if (newRoles)
[user setPrimaryRoles: newRoles];
return user;
}