The branch master has been updated
       via  ba6017a19346a169ca09bb67427ccf6fc56af0af (commit)
      from  455cba54f8078897edcee7bc56dc2689c20fc383 (commit)


- Log -----------------------------------------------------------------
commit ba6017a19346a169ca09bb67427ccf6fc56af0af
Author: choury <cho...@users.noreply.github.com>
Date:   Mon Oct 17 15:30:14 2016 +0800

    fix invalid use of incomplete type X509_STORE_CTX
    
    CLA: trivial
    
    Reviewed-by: Rich Salz <rs...@openssl.org>
    Reviewed-by: Richard Levitte <levi...@openssl.org>

-----------------------------------------------------------------------

Summary of changes:
 doc/ssl/SSL_CTX_set_verify.pod | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/ssl/SSL_CTX_set_verify.pod b/doc/ssl/SSL_CTX_set_verify.pod
index 7d7195d..96a98ac 100644
--- a/doc/ssl/SSL_CTX_set_verify.pod
+++ b/doc/ssl/SSL_CTX_set_verify.pod
@@ -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);
     }
 
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to