Fix copy-paste error
authortb <tb@openbsd.org>
Tue, 20 Jun 2023 06:46:07 +0000 (06:46 +0000)
committertb <tb@openbsd.org>
Tue, 20 Jun 2023 06:46:07 +0000 (06:46 +0000)
regress/lib/libcrypto/bn/bn_unit.c

index 24c7569..bc49192 100644 (file)
@@ -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;
        }