aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/asn1/x_attrib.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2001-02-23 12:47:06 +0000
committerDr. Stephen Henson <steve@openssl.org>2001-02-23 12:47:06 +0000
commitd339187b1a045ca74fbe20adbfb60771c77eaad5 (patch)
tree02c51fd208216a7880c36777f4ce9befd40f0113 /crypto/asn1/x_attrib.c
parent61fca8b69bc1b767e0e65eb55e442ae058156754 (diff)
downloadopenssl-d339187b1a045ca74fbe20adbfb60771c77eaad5.tar.gz
Get rid of ASN1_ITEM_FUNCTIONS dummy function
prototype hack. This unfortunately means that every ASN1_*_END construct cannot have a trailing ;
Diffstat (limited to 'crypto/asn1/x_attrib.c')
-rw-r--r--crypto/asn1/x_attrib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/asn1/x_attrib.c b/crypto/asn1/x_attrib.c
index 3c0d3ab759..959e1ad42e 100644
--- a/crypto/asn1/x_attrib.c
+++ b/crypto/asn1/x_attrib.c
@@ -85,13 +85,13 @@
ASN1_CHOICE(X509_ATTRIBUTE_SET) = {
ASN1_SET_OF(X509_ATTRIBUTE, value.set, ASN1_ANY),
ASN1_SIMPLE(X509_ATTRIBUTE, value.single, ASN1_ANY)
-} ASN1_CHOICE_END_selector(X509_ATTRIBUTE, X509_ATTRIBUTE_SET, single);
+} ASN1_CHOICE_END_selector(X509_ATTRIBUTE, X509_ATTRIBUTE_SET, single)
ASN1_SEQUENCE(X509_ATTRIBUTE) = {
ASN1_SIMPLE(X509_ATTRIBUTE, object, ASN1_OBJECT),
/* CHOICE type merged with parent */
ASN1_EX_COMBINE(0, 0, X509_ATTRIBUTE_SET)
-} ASN1_SEQUENCE_END(X509_ATTRIBUTE);
+} ASN1_SEQUENCE_END(X509_ATTRIBUTE)
IMPLEMENT_ASN1_FUNCTIONS(X509_ATTRIBUTE)