propagate from branch 'ca.inverse.sogo.1_3_16' (head 6a6bbe9da76e6e30fd9ce63cf4a8c7677f5f61a0)

to branch 'ca.inverse.sogo' (head 08ebdafabc8167a4fc18a6a90be850eb8f0a5e1d)

Monotone-Parent: 08ebdafabc8167a4fc18a6a90be850eb8f0a5e1d
Monotone-Parent: 6a6bbe9da76e6e30fd9ce63cf4a8c7677f5f61a0
Monotone-Revision: b7eda388ab81350d88ecf1275f9481aae4f94bd8

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2012-06-01T13:55:06
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2012-06-01 13:55:06 +00:00
commit 86fd762336
2 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,14 @@
2012-06-01 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/NSString+Crypto.m
(-isEqualToCrypted:withDefaultScheme:): invoke "intValue" rather
than "integerValue" on the encoding number as the int type is not
crucial and it breaks the build with old versions of GNUstep.
* SoObjects/SOGo/NSString+Crypto.[hm]: new module that provides
category methods for returning encrypted passwords strings and
their encryption algorithm.
2012-05-31 Ludovic Marcotte <lmarcotte@inverse.ca>
* SoObjects/SOGo/SOGoGroup.m - we now handle lowercase

View File

@ -142,7 +142,7 @@
scheme = [passInfo objectAtIndex: 0];
pass = [passInfo objectAtIndex: 1];
encodingNumber = [passInfo objectAtIndex: 2];
encoding = [encodingNumber integerValue];
encoding = [encodingNumber intValue];
if (encoding == encHex)
{