mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-11 00:30:49 +00:00
Fix to compile again on NetBSD and other systems without GNUTLS
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@35623 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d62c44a13f
commit
a84b6afe97
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2012-10-03 Wolfgang Lux <wolfgang.lux@gmail.com>
|
||||
|
||||
* SSL/GSSSLHandle.m (-sslSetOptions): Apply string name change
|
||||
missed during TLS reorganisation.
|
||||
|
||||
2012-09-30 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/GSSocketStream.m:
|
||||
|
|
|
@ -366,8 +366,8 @@ static NSString *cipherList = nil;
|
|||
int ret;
|
||||
|
||||
certFile = [options objectForKey: GSTLSCertificateFile];
|
||||
privateKey = [options objectForKey: GSTLSPrivateKeyFile];
|
||||
PEMpasswd = [options objectForKey: GSTLSPrivateKeyPassword];
|
||||
privateKey = [options objectForKey: GSTLSCertificateKeyFile];
|
||||
PEMpasswd = [options objectForKey: GSTLSCertificateKeyPassword];
|
||||
|
||||
if (isStandardFile == YES)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue