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:
Wolfgang Lux 2012-10-03 07:47:38 +00:00
parent d62c44a13f
commit a84b6afe97
2 changed files with 7 additions and 2 deletions

View file

@ -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:

View file

@ -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)
{