From 29026c426c756cfc8da5f20da09e06dc5eccbf30 Mon Sep 17 00:00:00 2001 From: Pkeane22 <61167933+Pkeane22@users.noreply.github.com> Date: Sun, 7 Sep 2025 17:09:27 -0400 Subject: [PATCH] asn1_parse.c: Fixed typo in comment Changed "15" to "14" on the comment line in ASN1_tag2str. CLA: trivial Reviewed-by: Paul Dale Reviewed-by: Shane Lontis (Merged from https://github.com/openssl/openssl/pull/28467) --- crypto/asn1/asn1_parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/asn1/asn1_parse.c b/crypto/asn1/asn1_parse.c index 29a469d157c..84910a8a174 100644 --- a/crypto/asn1/asn1_parse.c +++ b/crypto/asn1/asn1_parse.c @@ -366,7 +366,7 @@ const char *ASN1_tag2str(int tag) "NULL", "OBJECT", "OBJECT DESCRIPTOR", "EXTERNAL", "REAL", /* 10-13 */ "ENUMERATED", "", "UTF8STRING", "", - /* 15-17 */ + /* 14-17 */ "", "", "SEQUENCE", "SET", /* 18-20 */ "NUMERICSTRING", "PRINTABLESTRING", "T61STRING", -- 2.47.3