diff options
author | tb <> | 2023-06-20 06:46:07 +0000 |
---|---|---|
committer | tb <> | 2023-06-20 06:46:07 +0000 |
commit | 6b6b8b595460a702a94328314232c8cc0f254a13 (patch) | |
tree | 7c82a3e93578ed152f28997354e9ac09777986a3 | |
parent | a4427f65a3d1945ddc43273bcf9e3d4ca6be86c6 (diff) | |
download | openbsd-6b6b8b595460a702a94328314232c8cc0f254a13.tar.gz openbsd-6b6b8b595460a702a94328314232c8cc0f254a13.tar.bz2 openbsd-6b6b8b595460a702a94328314232c8cc0f254a13.zip |
Fix copy-paste error
-rw-r--r-- | src/regress/lib/libcrypto/bn/bn_unit.c | 4 |
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 | ||