summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2024-12-07 13:49:43 +0000
committertb <>2024-12-07 13:49:43 +0000
commit0fb85d5a81b250c6f715310586bf8253c5c2a56a (patch)
tree898b655a4a59d20f61782515cddbfd9afee2ba80 /src
parent5d43f77047a902201b1a821f4991729fe913d64f (diff)
downloadopenbsd-0fb85d5a81b250c6f715310586bf8253c5c2a56a.tar.gz
openbsd-0fb85d5a81b250c6f715310586bf8253c5c2a56a.tar.bz2
openbsd-0fb85d5a81b250c6f715310586bf8253c5c2a56a.zip
ec_mult: forgot to make one helper static
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/ec/ec_mult.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/ec/ec_mult.c b/src/lib/libcrypto/ec/ec_mult.c
index 08c1196013..e7646842f3 100644
--- a/src/lib/libcrypto/ec/ec_mult.c
+++ b/src/lib/libcrypto/ec/ec_mult.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ec_mult.c,v 1.54 2024/12/07 13:32:07 tb Exp $ */ 1/* $OpenBSD: ec_mult.c,v 1.55 2024/12/07 13:49:43 tb Exp $ */
2/* 2/*
3 * Originally written by Bodo Moeller and Nils Larsch for the OpenSSL project. 3 * Originally written by Bodo Moeller and Nils Larsch for the OpenSSL project.
4 */ 4 */
@@ -301,7 +301,7 @@ ec_wnaf_digit(struct ec_wnaf *wnaf, size_t idx)
301 return wnaf->digits[idx]; 301 return wnaf->digits[idx];
302} 302}
303 303
304const EC_POINT * 304static const EC_POINT *
305ec_wnaf_multiple(struct ec_wnaf *wnaf, signed char digit) 305ec_wnaf_multiple(struct ec_wnaf *wnaf, signed char digit)
306{ 306{
307 if (digit < 0) 307 if (digit < 0)