From 96fc458a9cbeb8e7b30d789ea5919c5dcb9b980e Mon Sep 17 00:00:00 2001 From: Davide Galassi Date: Sat, 25 Jan 2020 12:50:41 +0100 Subject: [PATCH] Removed unused ssl_dane struct declaration. The actually used structure is named ssl_dane_st. CLA: trivial Reviewed-by: Matthias St. Pierre Reviewed-by: Dmitry Belyavskiy (Merged from https://github.com/openssl/openssl/pull/10945) --- include/openssl/types.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/openssl/types.h b/include/openssl/types.h index 9ac8549062..a49763765e 100644 --- a/include/openssl/types.h +++ b/include/openssl/types.h @@ -78,7 +78,7 @@ typedef struct asn1_sctx_st ASN1_SCTX; # ifdef BIGNUM # undef BIGNUM # endif -struct dane_st; + typedef struct bio_st BIO; typedef struct bignum_st BIGNUM; typedef struct bignum_ctx BN_CTX; @@ -227,4 +227,5 @@ typedef unsigned long ossl_uintmax_t; #ifdef __cplusplus } #endif -#endif /* def OPENSSL_TYPES_H */ + +#endif /* OPENSSL_TYPES_H */ -- 2.25.1