This is an automated email from the ASF dual-hosted git repository.
maskit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new a7b3b4117e boringssl: Add a type declaration (#10956)
a7b3b4117e is described below
commit a7b3b4117e146960b04b5eb038c8c926e22c5ec0
Author: Masakazu Kitajo <[email protected]>
AuthorDate: Wed Jan 10 10:12:15 2024 -0700
boringssl: Add a type declaration (#10956)
Some declarations were unexported on recent BoringSSL.
---
src/iocore/net/OCSPStapling.cc | 3 +++
1 file changed, 3 insertions(+)
diff --git a/src/iocore/net/OCSPStapling.cc b/src/iocore/net/OCSPStapling.cc
index a9699f3d3e..f7db33e3a6 100644
--- a/src/iocore/net/OCSPStapling.cc
+++ b/src/iocore/net/OCSPStapling.cc
@@ -53,6 +53,9 @@ extern ClassAllocator<FetchSM> FetchSMAllocator;
// clang-format off
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-function"
+#ifndef GENERAL_NAME_it
+DECLARE_ASN1_ITEM(GENERAL_NAME)
+#endif
// RFC 6960
using TS_OCSP_CERTID = struct ocsp_cert_id {
X509_ALGOR *hashAlgorithm;