summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libcrypto/asn1/asn1_gen.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/libcrypto/asn1/asn1_gen.c b/src/lib/libcrypto/asn1/asn1_gen.c
index 5ff177e9d5..0918b6aefc 100644
--- a/src/lib/libcrypto/asn1/asn1_gen.c
+++ b/src/lib/libcrypto/asn1/asn1_gen.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: asn1_gen.c,v 1.29 2026/09/02 07:03:45 tb Exp $ */ 1/* $OpenBSD: asn1_gen.c,v 1.30 2026/09/02 07:04:56 tb Exp $ */
2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL 2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 * project 2002. 3 * project 2002.
4 */ 4 */
@@ -462,8 +462,7 @@ asn1_multi(int utype, const char *section, X509V3_CTX *cnf)
462 } 462 }
463 } 463 }
464 464
465 /* Now we has a STACK of the components, convert to the correct form */ 465 /* DER encode the stack as a SET or a SEQUENCE per utype. */
466
467 if (utype == V_ASN1_SET) 466 if (utype == V_ASN1_SET)
468 derlen = i2d_ASN1_SET_ANY(sk, &der); 467 derlen = i2d_ASN1_SET_ANY(sk, &der);
469 else 468 else