[openssl-commits] [openssl] OpenSSL_1_1_1-stable update
matthias.st.pierre at ncp-e.com
matthias.st.pierre at ncp-e.com
Fri Jan 25 10:21:12 UTC 2019
The branch OpenSSL_1_1_1-stable has been updated
via 5865bc0f835cb7e571d9da06794d00a966bbdfe0 (commit)
from b6d41ff73392df5af9c931c902ae4cd75c5b61ea (commit)
- Log -----------------------------------------------------------------
commit 5865bc0f835cb7e571d9da06794d00a966bbdfe0
Author: Dr. Matthias St. Pierre <Matthias.St.Pierre at ncp-e.com>
Date: Fri Jan 25 08:40:46 2019 +0100
X509_STORE: fix two misspelled compatibility macros
Fixes #8084
Reviewed-by: Matt Caswell <matt at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/8086)
(cherry picked from commit 2c75f03b39de2fa7d006bc0f0d7c58235a54d9bb)
-----------------------------------------------------------------------
Summary of changes:
include/openssl/x509_vfy.h | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/include/openssl/x509_vfy.h b/include/openssl/x509_vfy.h
index 2adb155..800c529 100644
--- a/include/openssl/x509_vfy.h
+++ b/include/openssl/x509_vfy.h
@@ -362,7 +362,11 @@ X509_STORE_CTX_cleanup_fn X509_STORE_CTX_get_cleanup(X509_STORE_CTX *ctx);
# define X509_STORE_CTX_set_chain X509_STORE_CTX_set0_untrusted
# define X509_STORE_CTX_trusted_stack X509_STORE_CTX_set0_trusted_stack
# define X509_STORE_get_by_subject X509_STORE_CTX_get_by_subject
+# define X509_STORE_get1_certs X509_STORE_CTX_get1_certs
+# define X509_STORE_get1_crls X509_STORE_CTX_get1_crls
+/* the following macro is misspelled; use X509_STORE_get1_certs instead */
# define X509_STORE_get1_cert X509_STORE_CTX_get1_certs
+/* the following macro is misspelled; use X509_STORE_get1_crls instead */
# define X509_STORE_get1_crl X509_STORE_CTX_get1_crls
#endif
More information about the openssl-commits
mailing list