diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2016-12-27 15:37:08 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2016-12-27 15:37:08 +0000 |
commit | 3734b9eec2add5f7865f4fc5fd4e1fa8169c98cd (patch) | |
tree | 4ab508995cfca76ee5fcb84dee2c84641c951df5 | |
parent | f6738f7fdf6f755ace58af7e7f1aa87f05e2630c (diff) |
Expand DECLARE_ASN1_ITEM macros - no change in preprocessor output.
-rw-r--r-- | lib/libcrypto/x509v3/x509v3.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/libcrypto/x509v3/x509v3.h b/lib/libcrypto/x509v3/x509v3.h index 6b6b594d82f..9f23f071c65 100644 --- a/lib/libcrypto/x509v3/x509v3.h +++ b/lib/libcrypto/x509v3/x509v3.h @@ -1,4 +1,4 @@ -/* $OpenBSD: x509v3.h,v 1.18 2016/09/04 17:14:46 jsing Exp $ */ +/* $OpenBSD: x509v3.h,v 1.19 2016/12/27 15:37:07 jsing Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 1999. */ @@ -672,22 +672,22 @@ AUTHORITY_INFO_ACCESS *d2i_AUTHORITY_INFO_ACCESS(AUTHORITY_INFO_ACCESS **a, cons int i2d_AUTHORITY_INFO_ACCESS(AUTHORITY_INFO_ACCESS *a, unsigned char **out); extern const ASN1_ITEM AUTHORITY_INFO_ACCESS_it; -DECLARE_ASN1_ITEM(POLICY_MAPPING) +extern const ASN1_ITEM POLICY_MAPPING_it; POLICY_MAPPING *POLICY_MAPPING_new(void); void POLICY_MAPPING_free(POLICY_MAPPING *a); -DECLARE_ASN1_ITEM(POLICY_MAPPINGS) +extern const ASN1_ITEM POLICY_MAPPINGS_it; -DECLARE_ASN1_ITEM(GENERAL_SUBTREE) +extern const ASN1_ITEM GENERAL_SUBTREE_it; GENERAL_SUBTREE *GENERAL_SUBTREE_new(void); void GENERAL_SUBTREE_free(GENERAL_SUBTREE *a); -DECLARE_ASN1_ITEM(NAME_CONSTRAINTS) +extern const ASN1_ITEM NAME_CONSTRAINTS_it; NAME_CONSTRAINTS *NAME_CONSTRAINTS_new(void); void NAME_CONSTRAINTS_free(NAME_CONSTRAINTS *a); POLICY_CONSTRAINTS *POLICY_CONSTRAINTS_new(void); void POLICY_CONSTRAINTS_free(POLICY_CONSTRAINTS *a); -DECLARE_ASN1_ITEM(POLICY_CONSTRAINTS) +extern const ASN1_ITEM POLICY_CONSTRAINTS_it; GENERAL_NAME *a2i_GENERAL_NAME(GENERAL_NAME *out, const X509V3_EXT_METHOD *method, X509V3_CTX *ctx, |