summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2008-03-31 18:14:10 +0000
committerDr. Stephen Henson <steve@openssl.org>2008-03-31 18:14:10 +0000
commitf6a45ac5ac867fe28db27577ecf09a1de55e0e6b (patch)
tree708791a2c01f0406ee70d594488cfa659c582ac9
parent2e86f0d8d7185993d8cca5158af61d13224c3c26 (diff)
Fix macro.
-rw-r--r--crypto/asn1/asn1.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/asn1/asn1.h b/crypto/asn1/asn1.h
index 8185e1dbb5..6d7df9d394 100644
--- a/crypto/asn1/asn1.h
+++ b/crypto/asn1/asn1.h
@@ -323,8 +323,8 @@ typedef struct ASN1_VALUE_st ASN1_VALUE;
int i2d_##name##_NDEF(name *a, unsigned char **out);
#define DECLARE_ASN1_FUNCTIONS_const(name) \
- name *name##_new(void); \
- void name##_free(name *a); \
+ DECLARE_ASN1_ALLOC_FUNCTIONS(name) \
+ DECLATE_ASN1_ENCODE_FUNCTIONS_const(name)
#define DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, name) \
type *name##_new(void); \