From aa0e9c11293a22e8840048c96cc20f4791c82f04 Mon Sep 17 00:00:00 2001 From: tb Date: Sat, 22 Jul 2023 19:33:25 +0000 Subject: [PATCH] Tweak previous. Should have been 60 instead of 64 --- lib/libcrypto/ec/ecx_methods.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/libcrypto/ec/ecx_methods.c b/lib/libcrypto/ec/ecx_methods.c index 55670c1a59f..4bb8b786a16 100644 --- a/lib/libcrypto/ec/ecx_methods.c +++ b/lib/libcrypto/ec/ecx_methods.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ecx_methods.c,v 1.8 2023/07/22 17:20:50 tb Exp $ */ +/* $OpenBSD: ecx_methods.c,v 1.9 2023/07/22 19:33:25 tb Exp $ */ /* * Copyright (c) 2022 Joel Sing * @@ -301,8 +301,8 @@ ecx_buf_print(BIO *bio, const uint8_t *buf, size_t buf_len, int indent) const char *sep = ":", *nl = ""; CBS cbs; - if (indent > 64) - indent = 64; + if (indent > 60) + indent = 60; indent += 4; if (indent < 0) indent = 0; -- 2.20.1