mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-12 00:51:08 +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>
|
2012-09-30 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
* Source/GSSocketStream.m:
|
* Source/GSSocketStream.m:
|
||||||
|
|
|
@ -366,8 +366,8 @@ static NSString *cipherList = nil;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
certFile = [options objectForKey: GSTLSCertificateFile];
|
certFile = [options objectForKey: GSTLSCertificateFile];
|
||||||
privateKey = [options objectForKey: GSTLSPrivateKeyFile];
|
privateKey = [options objectForKey: GSTLSCertificateKeyFile];
|
||||||
PEMpasswd = [options objectForKey: GSTLSPrivateKeyPassword];
|
PEMpasswd = [options objectForKey: GSTLSCertificateKeyPassword];
|
||||||
|
|
||||||
if (isStandardFile == YES)
|
if (isStandardFile == YES)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue