summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2023-03-26 19:01:59 +0000
committertb <>2023-03-26 19:01:59 +0000
commitafbdb6d4764969f7cbb7cd3e222a6c0ba091ac72 (patch)
tree7dc6ffd2ad07cc87042e1316a1fd88126633245f /src
parent9bbac719e1981de0311993bc24b2ba5eae5ebecd (diff)
downloadopenbsd-afbdb6d4764969f7cbb7cd3e222a6c0ba091ac72.tar.gz
openbsd-afbdb6d4764969f7cbb7cd3e222a6c0ba091ac72.tar.bz2
openbsd-afbdb6d4764969f7cbb7cd3e222a6c0ba091ac72.zip
Fix a typo in dump_exp_results()
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libcrypto/bn/bn_mod_exp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libcrypto/bn/bn_mod_exp.c b/src/regress/lib/libcrypto/bn/bn_mod_exp.c
index 2fafb04a58..b9adadbd67 100644
--- a/src/regress/lib/libcrypto/bn/bn_mod_exp.c
+++ b/src/regress/lib/libcrypto/bn/bn_mod_exp.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bn_mod_exp.c,v 1.20 2023/03/26 19:01:15 tb Exp $ */ 1/* $OpenBSD: bn_mod_exp.c,v 1.21 2023/03/26 19:01:59 tb Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2022,2023 Theo Buehler <tb@openbsd.org> 4 * Copyright (c) 2022,2023 Theo Buehler <tb@openbsd.org>
@@ -354,7 +354,7 @@ dump_exp_results(const BIGNUM *a, const BIGNUM *p, const BIGNUM *m,
354 354
355 printf("\na: "); 355 printf("\na: ");
356 BN_print_fp(stdout, a); 356 BN_print_fp(stdout, a);
357 printf("\nb: "); 357 printf("\np: ");
358 BN_print_fp(stdout, p); 358 BN_print_fp(stdout, p);
359 printf("\nm: "); 359 printf("\nm: ");
360 BN_print_fp(stdout, m); 360 BN_print_fp(stdout, m);