diff options
author | Dr. Stephen Henson <steve@openssl.org> | 1999-10-20 03:50:23 +0200 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 1999-10-20 03:50:23 +0200 |
commit | 08e9c1af6c26f74ef7f7524be4b89241ff232a8c (patch) | |
tree | 7fe3f66fdfb1f20a5bfcbbf98369032374f3a79b /crypto/x509v3/v3_bcons.c | |
parent | Use of DEVRANDOM must be #ifdef'ed (the #ifdef was commented out (diff) | |
download | openssl-08e9c1af6c26f74ef7f7524be4b89241ff232a8c.tar.xz openssl-08e9c1af6c26f74ef7f7524be4b89241ff232a8c.zip |
Replace the macros in asn1.h with function equivalents. Also make UTF8Strings
tolerated in certificates.
Diffstat (limited to 'crypto/x509v3/v3_bcons.c')
-rw-r--r-- | crypto/x509v3/v3_bcons.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x509v3/v3_bcons.c b/crypto/x509v3/v3_bcons.c index de2f855c35..9aada0d880 100644 --- a/crypto/x509v3/v3_bcons.c +++ b/crypto/x509v3/v3_bcons.c @@ -122,7 +122,7 @@ BASIC_CONSTRAINTS *d2i_BASIC_CONSTRAINTS(BASIC_CONSTRAINTS **a, void BASIC_CONSTRAINTS_free(BASIC_CONSTRAINTS *a) { if (a == NULL) return; - ASN1_INTEGER_free (a->pathlen); + M_ASN1_INTEGER_free (a->pathlen); Free ((char *)a); } |