From 5277065c3c18a02a2ec9b9d2cbb1f4e04ca69719 Mon Sep 17 00:00:00 2001 From: Brett Nicholas Date: Thu, 26 Oct 2023 13:01:05 -0600 Subject: [PATCH] fix typo in WOLFSSL_ENTER function name --- wolfcrypt/src/asn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfcrypt/src/asn.c b/wolfcrypt/src/asn.c index e379f7e7c..389e9edc6 100644 --- a/wolfcrypt/src/asn.c +++ b/wolfcrypt/src/asn.c @@ -18567,7 +18567,7 @@ static int DecodeBasicCaConstraint(const byte* input, int sz, DecodedCert* cert) word32 idx = 0; byte isCA = 0; - WOLFSSL_ENTER("DecodeBasicCaConstraints"); + WOLFSSL_ENTER("DecodeBasicCaConstraint"); CALLOC_ASNGETDATA(dataASN, basicConsASN_Length, ret, cert->heap);