From 8b1bee23ae71f5487fb90c67a0167e18ffb75aac Mon Sep 17 00:00:00 2001 From: tb <> Date: Mon, 5 Jan 2026 05:23:56 +0000 Subject: ASN.1 templates: make internal *_PUBKEY_it static --- src/lib/libcrypto/asn1/x_pubkey.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/lib/libcrypto/asn1/x_pubkey.c b/src/lib/libcrypto/asn1/x_pubkey.c index 11ba88c133..895b4da4d0 100644 --- a/src/lib/libcrypto/asn1/x_pubkey.c +++ b/src/lib/libcrypto/asn1/x_pubkey.c @@ -1,4 +1,4 @@ -/* $OpenBSD: x_pubkey.c,v 1.39 2026/01/05 05:22:09 tb Exp $ */ +/* $OpenBSD: x_pubkey.c,v 1.40 2026/01/05 05:23:56 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -395,7 +395,7 @@ static const ASN1_EXTERN_FUNCS pkey_pubkey_asn1_ff = { .asn1_ex_print = NULL, }; -const ASN1_ITEM EVP_PKEY_PUBKEY_it = { +static const ASN1_ITEM EVP_PKEY_PUBKEY_it = { .itype = ASN1_ITYPE_EXTERN, .utype = 0, .templates = NULL, @@ -495,7 +495,7 @@ static const ASN1_EXTERN_FUNCS rsa_pubkey_asn1_ff = { .asn1_ex_print = NULL, }; -const ASN1_ITEM RSA_PUBKEY_it = { +static const ASN1_ITEM RSA_PUBKEY_it = { .itype = ASN1_ITYPE_EXTERN, .utype = 0, .templates = NULL, @@ -591,7 +591,7 @@ static const ASN1_EXTERN_FUNCS dsa_pubkey_asn1_ff = { .asn1_ex_print = NULL, }; -const ASN1_ITEM DSA_PUBKEY_it = { +static const ASN1_ITEM DSA_PUBKEY_it = { .itype = ASN1_ITYPE_EXTERN, .utype = 0, .templates = NULL, @@ -688,7 +688,7 @@ static const ASN1_EXTERN_FUNCS ec_pubkey_asn1_ff = { .asn1_ex_print = NULL, }; -const ASN1_ITEM EC_PUBKEY_it = { +static const ASN1_ITEM EC_PUBKEY_it = { .itype = ASN1_ITYPE_EXTERN, .utype = 0, .templates = NULL, -- cgit v1.2.3-55-g6feb