Remove unused variable
authortb <tb@openbsd.org>
Thu, 11 Aug 2022 10:36:32 +0000 (10:36 +0000)
committertb <tb@openbsd.org>
Thu, 11 Aug 2022 10:36:32 +0000 (10:36 +0000)
commit1b101d0e13ac9049eb40f2551caad955c7888e06
tree66990d4d8c18aa24121027ab6f291d5d036e573f
parentdc47bf5f7a0bd2a9b4b82a62c101483245d6c605
Remove unused variable

X509_NAME_print() is documented to print things at a given indentation
level. Unfortunately, this never worked since someone got some logic
wrong. Part of the wrong logic was removed in a dead code removal in
OpenSSL commit 92ada7cc, but the variable l was left behind, which leads
to compiler warnings on some platforms. End its sad life pointlessly
and incorrectly measuring column width and remove it.

ok jsing
lib/libcrypto/asn1/t_x509.c