diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2014-07-12 18:37:29 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2014-07-12 18:37:29 +0000 |
commit | 146a94667dcdad0aa9243c38ab7e0786995bf2ba (patch) | |
tree | 0a4f0241b8c98fe2d814abc88987a97c4f0ac443 /lib/libssl/s3_clnt.c | |
parent | adb360a6b618201407a7031587cd48126dd8c8a8 (diff) |
Remove extra parenthesis.
Diffstat (limited to 'lib/libssl/s3_clnt.c')
-rw-r--r-- | lib/libssl/s3_clnt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/s3_clnt.c b/lib/libssl/s3_clnt.c index 8c622f4974c..0e67aadd901 100644 --- a/lib/libssl/s3_clnt.c +++ b/lib/libssl/s3_clnt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: s3_clnt.c,v 1.80 2014/07/12 18:10:21 jsing Exp $ */ +/* $OpenBSD: s3_clnt.c,v 1.81 2014/07/12 18:37:28 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1091,7 +1091,7 @@ ssl3_get_server_certificate(SSL *s) pkey = X509_get_pubkey(x); - if (pkey == NULL || EVP_PKEY_missing_parameters(pkey))) { + if (pkey == NULL || EVP_PKEY_missing_parameters(pkey)) { x = NULL; al = SSL3_AL_FATAL; SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE, |