summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2023-06-20 06:46:07 +0000
committertb <>2023-06-20 06:46:07 +0000
commitcb8959e259654169680279caacdcd5f5d8066e95 (patch)
tree7c82a3e93578ed152f28997354e9ac09777986a3 /src
parent555b132a2dd8e3857ad8695e0fcfb6a7608fd5d0 (diff)
downloadopenbsd-cb8959e259654169680279caacdcd5f5d8066e95.tar.gz
openbsd-cb8959e259654169680279caacdcd5f5d8066e95.tar.bz2
openbsd-cb8959e259654169680279caacdcd5f5d8066e95.zip
Fix copy-paste error
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libcrypto/bn/bn_unit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libcrypto/bn/bn_unit.c b/src/regress/lib/libcrypto/bn/bn_unit.c
index 24c7569ff9..bc49192b8c 100644
--- a/src/regress/lib/libcrypto/bn/bn_unit.c
+++ b/src/regress/lib/libcrypto/bn/bn_unit.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bn_unit.c,v 1.5 2023/06/20 06:36:09 jsing Exp $ */ 1/* $OpenBSD: bn_unit.c,v 1.6 2023/06/20 06:46:07 tb Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2022 Theo Buehler <tb@openbsd.org> 4 * Copyright (c) 2022 Theo Buehler <tb@openbsd.org>
@@ -80,7 +80,7 @@ test_bn_num_bits(void)
80 errx(1, "BN_new"); 80 errx(1, "BN_new");
81 81
82 if ((num_bits = BN_num_bits(bn)) != 0) { 82 if ((num_bits = BN_num_bits(bn)) != 0) {
83 warnx("BN_num_bits_word(0): want 0, got %d", num_bits); 83 warnx("BN_num_bits(0): want 0, got %d", num_bits);
84 failed |= 1; 84 failed |= 1;
85 } 85 }
86 86