diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2001-02-23 13:47:06 +0100 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2001-02-23 13:47:06 +0100 |
commit | d339187b1a045ca74fbe20adbfb60771c77eaad5 (patch) | |
tree | 02c51fd208216a7880c36777f4ce9befd40f0113 /crypto/asn1/x_bignum.c | |
parent | make depend. (diff) | |
download | openssl-d339187b1a045ca74fbe20adbfb60771c77eaad5.tar.xz openssl-d339187b1a045ca74fbe20adbfb60771c77eaad5.zip |
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_bignum.c')
-rw-r--r-- | crypto/asn1/x_bignum.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/asn1/x_bignum.c b/crypto/asn1/x_bignum.c index e7004ccfae..848c7a0877 100644 --- a/crypto/asn1/x_bignum.c +++ b/crypto/asn1/x_bignum.c @@ -85,11 +85,11 @@ static ASN1_PRIMITIVE_FUNCS bignum_pf = { ASN1_ITEM_start(BIGNUM) ASN1_ITYPE_PRIMITIVE, V_ASN1_INTEGER, NULL, 0, &bignum_pf, 0, "BIGNUM" -ASN1_ITEM_end(BIGNUM); +ASN1_ITEM_end(BIGNUM) ASN1_ITEM_start(CBIGNUM) ASN1_ITYPE_PRIMITIVE, V_ASN1_INTEGER, NULL, 0, &bignum_pf, BN_SENSITIVE, "BIGNUM" -ASN1_ITEM_end(CBIGNUM); +ASN1_ITEM_end(CBIGNUM) static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it) { |