diff options
author | 2014-07-12 18:37:28 +0000 | |
---|---|---|
committer | 2014-07-12 18:37:28 +0000 | |
commit | 8b4df86fe75b24a1cf71cd8ebff8e8c804ce22ff (patch) | |
tree | fff5489d3374e5f428d8b6c13a30298a7b1f456c /lib/libssl/s3_clnt.c | |
parent | need_cert is now always true, so remove the variable and associated (diff) | |
download | wireguard-openbsd-8b4df86fe75b24a1cf71cd8ebff8e8c804ce22ff.tar.xz wireguard-openbsd-8b4df86fe75b24a1cf71cd8ebff8e8c804ce22ff.zip |
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, |