From 70458be1b74c4cd74e7b052f9c9920d3ea5bb1c7 Mon Sep 17 00:00:00 2001 From: tb Date: Wed, 5 Jul 2023 14:41:18 +0000 Subject: [PATCH] One more ECDSAerror goes. --- lib/libcrypto/ecdsa/ecdsa.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libcrypto/ecdsa/ecdsa.c b/lib/libcrypto/ecdsa/ecdsa.c index d256ff39a3b..5d6175a787c 100644 --- a/lib/libcrypto/ecdsa/ecdsa.c +++ b/lib/libcrypto/ecdsa/ecdsa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ecdsa.c,v 1.8 2023/07/05 14:39:05 tb Exp $ */ +/* $OpenBSD: ecdsa.c,v 1.9 2023/07/05 14:41:18 tb Exp $ */ /* ==================================================================== * Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved. * @@ -196,7 +196,7 @@ ecdsa_prepare_digest(const unsigned char *digest, int digest_len, int digest_bits, order_bits; if (BN_bin2bn(digest, digest_len, e) == NULL) { - ECDSAerror(ERR_R_BN_LIB); + ECerror(ERR_R_BN_LIB); return 0; } -- 2.20.1