diff options
author | jsing <> | 2014-07-12 18:37:28 +0000 |
---|---|---|
committer | jsing <> | 2014-07-12 18:37:28 +0000 |
commit | bcf66caec5231d39ba4ae2994718518ca2837197 (patch) | |
tree | ded468e34dcf9f24a478a2f071c4b311456602c1 /src/lib | |
parent | 520b4d0cde547e54c697b6e35f12bc1616b19522 (diff) | |
download | openbsd-bcf66caec5231d39ba4ae2994718518ca2837197.tar.gz openbsd-bcf66caec5231d39ba4ae2994718518ca2837197.tar.bz2 openbsd-bcf66caec5231d39ba4ae2994718518ca2837197.zip |
Remove extra parenthesis.
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libssl/s3_clnt.c | 4 | ||||
-rw-r--r-- | src/lib/libssl/src/ssl/s3_clnt.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libssl/s3_clnt.c b/src/lib/libssl/s3_clnt.c index 8c622f4974..0e67aadd90 100644 --- a/src/lib/libssl/s3_clnt.c +++ b/src/lib/libssl/s3_clnt.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: s3_clnt.c,v 1.80 2014/07/12 18:10:21 jsing Exp $ */ | 1 | /* $OpenBSD: s3_clnt.c,v 1.81 2014/07/12 18:37:28 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -1091,7 +1091,7 @@ ssl3_get_server_certificate(SSL *s) | |||
1091 | 1091 | ||
1092 | pkey = X509_get_pubkey(x); | 1092 | pkey = X509_get_pubkey(x); |
1093 | 1093 | ||
1094 | if (pkey == NULL || EVP_PKEY_missing_parameters(pkey))) { | 1094 | if (pkey == NULL || EVP_PKEY_missing_parameters(pkey)) { |
1095 | x = NULL; | 1095 | x = NULL; |
1096 | al = SSL3_AL_FATAL; | 1096 | al = SSL3_AL_FATAL; |
1097 | SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE, | 1097 | SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE, |
diff --git a/src/lib/libssl/src/ssl/s3_clnt.c b/src/lib/libssl/src/ssl/s3_clnt.c index 8c622f4974..0e67aadd90 100644 --- a/src/lib/libssl/src/ssl/s3_clnt.c +++ b/src/lib/libssl/src/ssl/s3_clnt.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: s3_clnt.c,v 1.80 2014/07/12 18:10:21 jsing Exp $ */ | 1 | /* $OpenBSD: s3_clnt.c,v 1.81 2014/07/12 18:37:28 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -1091,7 +1091,7 @@ ssl3_get_server_certificate(SSL *s) | |||
1091 | 1091 | ||
1092 | pkey = X509_get_pubkey(x); | 1092 | pkey = X509_get_pubkey(x); |
1093 | 1093 | ||
1094 | if (pkey == NULL || EVP_PKEY_missing_parameters(pkey))) { | 1094 | if (pkey == NULL || EVP_PKEY_missing_parameters(pkey)) { |
1095 | x = NULL; | 1095 | x = NULL; |
1096 | al = SSL3_AL_FATAL; | 1096 | al = SSL3_AL_FATAL; |
1097 | SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE, | 1097 | SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE, |