diff options
author | schwarze <> | 2024-12-24 09:14:33 +0000 |
---|---|---|
committer | schwarze <> | 2024-12-24 09:14:33 +0000 |
commit | 095767444d291c0674b124252ae2b4e97e823d21 (patch) | |
tree | 2bf626ebeffa5f3e7a87d3de4c6239fa175048e4 /src | |
parent | f1cf401d75253b4a7c8c4347bb5039ae9232e230 (diff) | |
download | openbsd-095767444d291c0674b124252ae2b4e97e823d21.tar.gz openbsd-095767444d291c0674b124252ae2b4e97e823d21.tar.bz2 openbsd-095767444d291c0674b124252ae2b4e97e823d21.zip |
Internal linkage for one constant struct where that was accidentally
forgotten in rev. 1.3 on July 13 this year.
No library bump and no ABI change because libcrypto.so.55.0 did not
export the symbol because it wasn't in Symbols.list.
Found in a partial code audit focusing on X509V3_EXT_METHOD objects.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/x509/x509_ocsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/x509/x509_ocsp.c b/src/lib/libcrypto/x509/x509_ocsp.c index 11d1a1c9c3..6531b4c420 100644 --- a/src/lib/libcrypto/x509/x509_ocsp.c +++ b/src/lib/libcrypto/x509/x509_ocsp.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x509_ocsp.c,v 1.3 2024/07/13 15:08:58 tb Exp $ */ | 1 | /* $OpenBSD: x509_ocsp.c,v 1.4 2024/12/24 09:14:33 schwarze Exp $ */ |
2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
3 | * project 1999. | 3 | * project 1999. |
4 | */ | 4 | */ |
@@ -118,7 +118,7 @@ x509v3_ext_method_id_pkix_OCSP_CrlID(void) | |||
118 | return &x509v3_ext_id_pkix_OCSP_CrlID; | 118 | return &x509v3_ext_id_pkix_OCSP_CrlID; |
119 | } | 119 | } |
120 | 120 | ||
121 | const X509V3_EXT_METHOD x509v3_ext_id_pkix_OCSP_archiveCutoff = { | 121 | static const X509V3_EXT_METHOD x509v3_ext_id_pkix_OCSP_archiveCutoff = { |
122 | .ext_nid = NID_id_pkix_OCSP_archiveCutoff, | 122 | .ext_nid = NID_id_pkix_OCSP_archiveCutoff, |
123 | .ext_flags = 0, | 123 | .ext_flags = 0, |
124 | .it = &ASN1_GENERALIZEDTIME_it, | 124 | .it = &ASN1_GENERALIZEDTIME_it, |