diff options
author | tb <> | 2023-07-22 19:33:25 +0000 |
---|---|---|
committer | tb <> | 2023-07-22 19:33:25 +0000 |
commit | 3a42767608796b85d23feb072c21b21446462ca2 (patch) | |
tree | c740378f71e966b4980853f540d56f11b930a2bd /src/lib/libcrypto/ec/ecx_methods.c | |
parent | 50f4fc20401c6f47f0efdb5dde0e8b49e7769f77 (diff) | |
download | openbsd-3a42767608796b85d23feb072c21b21446462ca2.tar.gz openbsd-3a42767608796b85d23feb072c21b21446462ca2.tar.bz2 openbsd-3a42767608796b85d23feb072c21b21446462ca2.zip |
Tweak previous. Should have been 60 instead of 64
Diffstat (limited to 'src/lib/libcrypto/ec/ecx_methods.c')
-rw-r--r-- | src/lib/libcrypto/ec/ecx_methods.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/ec/ecx_methods.c b/src/lib/libcrypto/ec/ecx_methods.c index 55670c1a59..4bb8b786a1 100644 --- a/src/lib/libcrypto/ec/ecx_methods.c +++ b/src/lib/libcrypto/ec/ecx_methods.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ecx_methods.c,v 1.8 2023/07/22 17:20:50 tb Exp $ */ | 1 | /* $OpenBSD: ecx_methods.c,v 1.9 2023/07/22 19:33:25 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2022 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2022 Joel Sing <jsing@openbsd.org> |
4 | * | 4 | * |
@@ -301,8 +301,8 @@ ecx_buf_print(BIO *bio, const uint8_t *buf, size_t buf_len, int indent) | |||
301 | const char *sep = ":", *nl = ""; | 301 | const char *sep = ":", *nl = ""; |
302 | CBS cbs; | 302 | CBS cbs; |
303 | 303 | ||
304 | if (indent > 64) | 304 | if (indent > 60) |
305 | indent = 64; | 305 | indent = 60; |
306 | indent += 4; | 306 | indent += 4; |
307 | if (indent < 0) | 307 | if (indent < 0) |
308 | indent = 0; | 308 | indent = 0; |