diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-06-20 06:46:08 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-06-20 06:46:08 +0000 |
commit | f21797e4b074f0ba0edd961bff6b2639f0fe31f9 (patch) | |
tree | d5ef677842bd947565d59102744c0228f0ac20a4 | |
parent | 8b2c18135bd59c7fd70fb586135568db1b169d72 (diff) |
Fix copy-paste error
-rw-r--r-- | regress/lib/libcrypto/bn/bn_unit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/lib/libcrypto/bn/bn_unit.c b/regress/lib/libcrypto/bn/bn_unit.c index 24c7569ff97..bc49192b8c2 100644 --- 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; } |