From 2449961ab2dc8e5b9f7349b32b1089824d244a9a Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Mon, 13 Dec 1999 13:14:14 +0000 Subject: [PATCH] Fix a typo in a_enum.c. --- crypto/asn1/a_enum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/asn1/a_enum.c b/crypto/asn1/a_enum.c index 38134f3688..56ee787a23 100644 --- a/crypto/asn1/a_enum.c +++ b/crypto/asn1/a_enum.c @@ -181,7 +181,7 @@ ASN1_ENUMERATED *d2i_ASN1_ENUMERATED(ASN1_ENUMERATED **a, unsigned char **pp, /* Strictly speaking this is an illegal ENUMERATED but we * tolerate it. */ - ret->type=V_ASN1_INTEGER; + ret->type=V_ASN1_ENUMERATED; } else if (*p & 0x80) /* a negative number */ { ret->type=V_ASN1_NEG_ENUMERATED; -- 2.25.1