diff options
author | Bob Beck <beck@cvs.openbsd.org> | 2024-07-08 14:52:32 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 2024-07-08 14:52:32 +0000 |
commit | f2109ed450ce3495526e0a0ecf6093a53981b282 (patch) | |
tree | 7760363a73d9bec78af50eed6f596e818c9e5a4e /lib/libcrypto/asn1/a_bitstr.c | |
parent | aca07e7e125957a5e7607e4626de3eb27b9d6ce5 (diff) |
Hide global _it variables in asn1.h
ok tb@
Diffstat (limited to 'lib/libcrypto/asn1/a_bitstr.c')
-rw-r--r-- | lib/libcrypto/asn1/a_bitstr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libcrypto/asn1/a_bitstr.c b/lib/libcrypto/asn1/a_bitstr.c index 851a3a3d514..d5d00c4d44a 100644 --- a/lib/libcrypto/asn1/a_bitstr.c +++ b/lib/libcrypto/asn1/a_bitstr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: a_bitstr.c,v 1.42 2023/12/25 22:02:59 tb Exp $ */ +/* $OpenBSD: a_bitstr.c,v 1.43 2024/07/08 14:52:31 beck Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -73,6 +73,7 @@ const ASN1_ITEM ASN1_BIT_STRING_it = { .utype = V_ASN1_BIT_STRING, .sname = "ASN1_BIT_STRING", }; +LCRYPTO_ALIAS(ASN1_BIT_STRING_it); ASN1_BIT_STRING * ASN1_BIT_STRING_new(void) |