mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-26 16:42:44 +00:00
Monotone-Parent: 9471287ef57b6223c0e3a175d74fc5f6b9ebc42f
Monotone-Revision: 6a6bbe9da76e6e30fd9ce63cf4a8c7677f5f61a0 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2012-06-01T13:54:52
This commit is contained in:
11
ChangeLog
11
ChangeLog
@@ -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
|
||||
|
||||
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user