diff options
author | Gábor Tóthvári <tigbrcode@protonmail.com> | 2024-10-29 20:28:04 +0100 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2024-11-04 11:52:17 +0100 |
commit | 8f4cd8e305ad2e918fc0c5680d0ff94ee25f42c3 (patch) | |
tree | 30de56641f8ec0fa7ecdb17d834be2ef24ff7b7b /include | |
parent | Use correct alerts for some cert comp errors (diff) | |
download | openssl-8f4cd8e305ad2e918fc0c5680d0ff94ee25f42c3.tar.xz openssl-8f4cd8e305ad2e918fc0c5680d0ff94ee25f42c3.zip |
Remove two unused union members from struct x509_object_st.
CLA: trivial
Reviewed-by: Kurt Roeckx <kurt@roeckx.be>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/25826)
Diffstat (limited to 'include')
-rw-r--r-- | include/crypto/x509.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/crypto/x509.h b/include/crypto/x509.h index 332108d1bb..616265f5b2 100644 --- a/include/crypto/x509.h +++ b/include/crypto/x509.h @@ -303,10 +303,8 @@ struct x509_object_st { /* one of the above types */ X509_LOOKUP_TYPE type; union { - char *ptr; X509 *x509; X509_CRL *crl; - EVP_PKEY *pkey; } data; }; |