diff options
author | tb <> | 2023-03-29 07:38:16 +0000 |
---|---|---|
committer | tb <> | 2023-03-29 07:38:16 +0000 |
commit | e0c3aeb2d411ba02c94654c665c33921392d7f1c (patch) | |
tree | dcc7b64e66e24e2b77c8cccce2e01377640a2af6 /src | |
parent | ddc4d362bb10d543a1c1ce747913120955252e6a (diff) | |
download | openbsd-e0c3aeb2d411ba02c94654c665c33921392d7f1c.tar.gz openbsd-e0c3aeb2d411ba02c94654c665c33921392d7f1c.tar.bz2 openbsd-e0c3aeb2d411ba02c94654c665c33921392d7f1c.zip |
Fix printfs that escaped defensive grepping
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libcrypto/bn/bn_mod_exp.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/regress/lib/libcrypto/bn/bn_mod_exp.c b/src/regress/lib/libcrypto/bn/bn_mod_exp.c index 0cd42a16d0..804cdd26d4 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.31 2023/03/29 07:29:11 tb Exp $ */ | 1 | /* $OpenBSD: bn_mod_exp.c,v 1.32 2023/03/29 07:38:16 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> |
@@ -416,13 +416,13 @@ dump_exp2_results(const BIGNUM *a, const BIGNUM *p, const BIGNUM *b, | |||
416 | printf("\ngot: "); | 416 | printf("\ngot: "); |
417 | BN_print_fp(stdout, got); | 417 | BN_print_fp(stdout, got); |
418 | 418 | ||
419 | printf("\na1: "); | 419 | printf("\na: "); |
420 | BN_print_fp(stdout, a); | 420 | BN_print_fp(stdout, a); |
421 | printf("\np1: "); | 421 | printf("\np: "); |
422 | BN_print_fp(stdout, p); | 422 | BN_print_fp(stdout, p); |
423 | printf("\na2: "); | 423 | printf("\nb: "); |
424 | BN_print_fp(stdout, b); | 424 | BN_print_fp(stdout, b); |
425 | printf("\np2: "); | 425 | printf("\nq: "); |
426 | BN_print_fp(stdout, q); | 426 | BN_print_fp(stdout, q); |
427 | printf("\nm: "); | 427 | printf("\nm: "); |
428 | BN_print_fp(stdout, m); | 428 | BN_print_fp(stdout, m); |