summaryrefslogtreecommitdiffstats
path: root/crypto/include
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2019-07-31 20:56:34 +1000
committerShane Lontis <shane.lontis@oracle.com>2019-07-31 20:56:34 +1000
commitfaa9dcd4d468441422254ab2d887bb267e0245b6 (patch)
tree06588f93b31f65afe84143c7987266795e7ef8e4 /crypto/include
parente870791a4d6aea3a0275396bd01da629cb6f4ac8 (diff)
Rename X509_STORE ptr stored in opaque struct X509_STORE_CTX
Change name from 'ctx' to 'store' to remove ctx->ctx from code. Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/9405)
Diffstat (limited to 'crypto/include')
-rw-r--r--crypto/include/internal/x509_int.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/include/internal/x509_int.h b/crypto/include/internal/x509_int.h
index f6897e1421..11a776953b 100644
--- a/crypto/include/internal/x509_int.h
+++ b/crypto/include/internal/x509_int.h
@@ -197,7 +197,7 @@ struct x509_st {
* kept and passed around.
*/
struct x509_store_ctx_st { /* X509_STORE_CTX */
- X509_STORE *ctx;
+ X509_STORE *store;
/* The following are set by the caller */
/* The cert to check */
X509 *cert;