minor fix over previous commit

Monotone-Parent: c395dc55e24320e5a7a74fe51cd8a5b61e1c8f68
Monotone-Revision: fbae6d1883c541db7a57fdf725e970f6cc80c44f

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2011-06-29T18:42:59
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Ludovic Marcotte 2011-06-29 18:42:59 +00:00
parent dd3704d265
commit 710b51581b
1 changed files with 11 additions and 4 deletions

View File

@ -169,20 +169,27 @@ typedef enum
authpwd = @"";
value = @"";
if (max > 4)
if (max > 5)
{
r = [[arguments objectAtIndex: 3] rangeOfString: @":"];
authname = [[arguments objectAtIndex: 3] substringToIndex: r.location];
authpwd = [[arguments objectAtIndex: 3] substringFromIndex: r.location+1];
key = [arguments objectAtIndex: 4];
if (max > 5)
if (max > 6)
value = [arguments objectAtIndex: 5];
}
else
{
key = [arguments objectAtIndex: 3];
value = [arguments objectAtIndex: 4];
if (cmd == UserPreferencesUnset)
{
key = [arguments objectAtIndex: 3];
}
else
{
key = [arguments objectAtIndex: 3];
value = [arguments objectAtIndex: 4];
}
}
if (cmd == UserPreferencesUnset)