diff options
author | Dr. Stephen Henson <steve@openssl.org> | 1999-03-06 03:34:07 +0100 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 1999-03-06 03:34:07 +0100 |
commit | 79a474e8f275fec0548f565efc98b659072e9f99 (patch) | |
tree | 04505735cf605aa3a8030033bae0eb07236d6642 /crypto/x509v3/v3_int.c | |
parent | Fix the PKCS#7 stuff: signature verify could fail if attributes reordered, the (diff) | |
download | openssl-79a474e8f275fec0548f565efc98b659072e9f99.tar.xz openssl-79a474e8f275fec0548f565efc98b659072e9f99.zip |
Add an extra 'raw' function r2i to the extension code. Nothing uses this yet and
it is just a place holder for functionality to be added later. Its been added
now so the X509V3_EXT_METHOD structure shouldn't (hopefully) have to change
after the release.
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 199ba104c8..03b1c2539a 100644 --- a/crypto/x509v3/v3_int.c +++ b/crypto/x509v3/v3_int.c @@ -69,7 +69,7 @@ NID_crl_number, 0, i2d_ASN1_INTEGER, (X509V3_EXT_I2S)i2s_ASN1_INTEGER, (X509V3_EXT_S2I)NULL, -NULL, NULL, NULL, NULL}; +NULL, NULL, NULL, NULL, NULL}; static ASN1_INTEGER *asn1_integer_new() |