summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJob Snijders <job@cvs.openbsd.org>2021-09-02 13:26:52 +0000
committerJob Snijders <job@cvs.openbsd.org>2021-09-02 13:26:52 +0000
commitf2ca895a570896a3932e0778cc994a1959eb0617 (patch)
tree2aafb75a137a03bd2ff4370db2712db46e668d3c /lib
parentd3888a0bd7b318d16485669c743bfe78d0624ff6 (diff)
Rename DEFINE_STACK_OF() to DECLARE_STACK_OF()
OK tb@ jsing@
Diffstat (limited to 'lib')
-rw-r--r--lib/libcrypto/x509/x509v3.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libcrypto/x509/x509v3.h b/lib/libcrypto/x509/x509v3.h
index 3cccf86242a..f9ff466e604 100644
--- a/lib/libcrypto/x509/x509v3.h
+++ b/lib/libcrypto/x509/x509v3.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: x509v3.h,v 1.3 2021/09/02 12:41:44 job Exp $ */
+/* $OpenBSD: x509v3.h,v 1.4 2021/09/02 13:26:51 job Exp $ */
/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
* project 1999.
*/
@@ -860,7 +860,7 @@ typedef struct ASIdOrRange_st {
} ASIdOrRange;
typedef STACK_OF(ASIdOrRange) ASIdOrRanges;
-DEFINE_STACK_OF(ASIdOrRange)
+DECLARE_STACK_OF(ASIdOrRange)
# define ASIdentifierChoice_inherit 0
# define ASIdentifierChoice_asIdsOrRanges 1
@@ -897,7 +897,7 @@ typedef struct IPAddressOrRange_st {
} IPAddressOrRange;
typedef STACK_OF(IPAddressOrRange) IPAddressOrRanges;
-DEFINE_STACK_OF(IPAddressOrRange)
+DECLARE_STACK_OF(IPAddressOrRange)
# define IPAddressChoice_inherit 0
# define IPAddressChoice_addressesOrRanges 1
@@ -916,7 +916,7 @@ typedef struct IPAddressFamily_st {
} IPAddressFamily;
typedef STACK_OF(IPAddressFamily) IPAddrBlocks;
-DEFINE_STACK_OF(IPAddressFamily)
+DECLARE_STACK_OF(IPAddressFamily)
DECLARE_ASN1_FUNCTIONS(IPAddressRange)
DECLARE_ASN1_FUNCTIONS(IPAddressOrRange)
DECLARE_ASN1_FUNCTIONS(IPAddressChoice)