Monotone-Parent: 9471287ef57b6223c0e3a175d74fc5f6b9ebc42f

Monotone-Revision: 6a6bbe9da76e6e30fd9ce63cf4a8c7677f5f61a0

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2012-06-01T13:54:52
maint-2.0.2
Wolfgang Sourdeau 2012-06-01 13:54:52 +00:00
parent 005266ee5d
commit 9e842e7277
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)
{