Skip to content

Commit

Permalink
fix invalid use of incomplete type X509_STORE_CTX
Browse files Browse the repository at this point in the history
CLA: trivial

Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
  • Loading branch information
choury authored and levitte committed Oct 17, 2016
1 parent 455cba5 commit ba6017a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/ssl/SSL_CTX_set_verify.pod
Expand Up @@ -224,7 +224,7 @@ L<SSL_get_ex_data_X509_STORE_CTX_idx(3)>).
*/
if (!preverify_ok && (err == X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT))
{
X509_NAME_oneline(X509_get_issuer_name(ctx->current_cert), buf, 256);
X509_NAME_oneline(X509_get_issuer_name(err_cert), buf, 256);
printf("issuer= %s\n", buf);
}

Expand Down

0 comments on commit ba6017a

Please sign in to comment.