aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLutz Jänicke <jaenicke@openssl.org>2002-12-04 13:30:16 +0000
committerLutz Jänicke <jaenicke@openssl.org>2002-12-04 13:30:16 +0000
commit98c3eccc83653516a08d9e0c7c131ae154039ff8 (patch)
tree04cb68f0471322dcc9c87eb7758bef0dbad7f6be
parent7000fd8418097671736391cb141b898503cf9a8a (diff)
downloadopenssl-98c3eccc83653516a08d9e0c7c131ae154039ff8.tar.gz
Missing ")"
Submitted by: Christian Hohnstaedt <chohnstaedt@innominate.com> Reviewed by: PR:
-rw-r--r--doc/ssl/SSL_CTX_set_verify.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ssl/SSL_CTX_set_verify.pod b/doc/ssl/SSL_CTX_set_verify.pod
index 5bb21ca535..d15b2a3a1a 100644
--- a/doc/ssl/SSL_CTX_set_verify.pod
+++ b/doc/ssl/SSL_CTX_set_verify.pod
@@ -235,7 +235,7 @@ L<SSL_get_ex_data_X509_STORE_CTX_idx(3)|SSL_get_ex_data_X509_STORE_CTX_idx(3)>).
* At this point, err contains the last verification error. We can use
* it for something special
*/
- if (!preverify_ok && (err == X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT)
+ if (!preverify_ok && (err == X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT))
{
X509_NAME_oneline(X509_get_issuer_name(ctx->current_cert), buf, 256);
printf("issuer= %s\n", buf);