From: tb Date: Tue, 20 Jun 2023 06:46:07 +0000 (+0000) Subject: Fix copy-paste error X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=e1dd1f6b50a9a50c7ab64d811e2572ed946253f2;p=openbsd Fix copy-paste error --- 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 @@ -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; }