diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2001-02-23 04:16:09 +0100 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2001-02-23 04:16:09 +0100 |
commit | bb5ea36b962453c4d74dab15ac1897725a02707d (patch) | |
tree | 3bf427b77627b9c2a45c7f6288deda545822ccca /crypto/x509v3/v3_int.c | |
parent | I missed one. (diff) | |
download | openssl-bb5ea36b962453c4d74dab15ac1897725a02707d.tar.xz openssl-bb5ea36b962453c4d74dab15ac1897725a02707d.zip |
Initial support for ASN1_ITEM_FUNCTION option to
change the way ASN1 modules are exported.
Still needs a bit of work for example the hack which a
dummy function prototype to avoid compilers warning about
multiple ;s.
Diffstat (limited to 'crypto/x509v3/v3_int.c')
-rw-r--r-- | crypto/x509v3/v3_int.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x509v3/v3_int.c b/crypto/x509v3/v3_int.c index 473a9868a6..f34cbfb731 100644 --- a/crypto/x509v3/v3_int.c +++ b/crypto/x509v3/v3_int.c @@ -61,7 +61,7 @@ #include <openssl/x509v3.h> X509V3_EXT_METHOD v3_crl_num = { -NID_crl_number, 0, &ASN1_INTEGER_it, +NID_crl_number, 0, ASN1_ITEM_ref(ASN1_INTEGER), 0,0,0,0, (X509V3_EXT_I2S)i2s_ASN1_INTEGER, 0, |