summaryrefslogtreecommitdiff
path: root/lib/libssl
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2015-09-30 19:01:15 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2015-09-30 19:01:15 +0000
commitad6604ba374957feec8594daecf2ce7314fcee6e (patch)
tree3ce7b9f5ff368c2c12aeeecba8ba709b456aef0a /lib/libssl
parent6de08770b000be8294f7ee2f2c0ec1b048a89902 (diff)
s/M_ASN1_ENUMERATED_free/ASN1_ENUMERATED_free/
Diffstat (limited to 'lib/libssl')
-rw-r--r--lib/libssl/src/crypto/asn1/asn1_par.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/src/crypto/asn1/asn1_par.c b/lib/libssl/src/crypto/asn1/asn1_par.c
index aaf8decd6cc..72326a9cc13 100644
--- a/lib/libssl/src/crypto/asn1/asn1_par.c
+++ b/lib/libssl/src/crypto/asn1/asn1_par.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: asn1_par.c,v 1.24 2015/09/30 18:41:06 jsing Exp $ */
+/* $OpenBSD: asn1_par.c,v 1.25 2015/09/30 19:01:14 jsing Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -339,7 +339,7 @@ asn1_parse2(BIO *bp, const unsigned char **pp, long length, int offset,
if (BIO_write(bp, "BAD ENUMERATED", 14) <= 0)
goto end;
}
- M_ASN1_ENUMERATED_free(bs);
+ ASN1_ENUMERATED_free(bs);
} else if (len > 0 && dump) {
if (!nl) {
if (BIO_write(bp, "\n", 1) <= 0)