artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0d31acb
)
Fix copy-paste error
author
tb
<tb@openbsd.org>
Tue, 20 Jun 2023 06:46:07 +0000
(06:46 +0000)
committer
tb
<tb@openbsd.org>
Tue, 20 Jun 2023 06:46:07 +0000
(06:46 +0000)
regress/lib/libcrypto/bn/bn_unit.c
patch
|
blob
|
history
diff --git
a/regress/lib/libcrypto/bn/bn_unit.c
b/regress/lib/libcrypto/bn/bn_unit.c
index
24c7569
..
bc49192
100644
(file)
--- a/
regress/lib/libcrypto/bn/bn_unit.c
+++ b/
regress/lib/libcrypto/bn/bn_unit.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: bn_unit.c,v 1.
5 2023/06/20 06:36:09 jsing
Exp $ */
+/* $OpenBSD: bn_unit.c,v 1.
6 2023/06/20 06:46:07 tb
Exp $ */
/*
* Copyright (c) 2022 Theo Buehler <tb@openbsd.org>
@@
-80,7
+80,7
@@
test_bn_num_bits(void)
errx(1, "BN_new");
if ((num_bits = BN_num_bits(bn)) != 0) {
- warnx("BN_num_bits
_word
(0): want 0, got %d", num_bits);
+ warnx("BN_num_bits(0): want 0, got %d", num_bits);
failed |= 1;
}