From: tb Date: Tue, 18 Jun 2024 05:19:01 +0000 (+0000) Subject: do_ext_i2d(): unwrap a line X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=73b0b2516bff06beb71b3c83b69104c6865a7b46;p=openbsd do_ext_i2d(): unwrap a line --- diff --git a/lib/libcrypto/x509/x509_conf.c b/lib/libcrypto/x509/x509_conf.c index 189bf644054..30cf0b981c1 100644 --- a/lib/libcrypto/x509/x509_conf.c +++ b/lib/libcrypto/x509/x509_conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: x509_conf.c,v 1.5 2023/02/16 08:38:17 tb Exp $ */ +/* $OpenBSD: x509_conf.c,v 1.6 2024/06/18 05:19:01 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 1999. */ @@ -196,8 +196,7 @@ do_ext_i2d(const X509V3_EXT_METHOD *method, int ext_nid, int crit, /* Convert internal representation to DER */ if (method->it) { ext_der = NULL; - ext_len = ASN1_item_i2d(ext_struc, &ext_der, - method->it); + ext_len = ASN1_item_i2d(ext_struc, &ext_der, method->it); if (ext_len < 0) goto merr; } else {