summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto')
-rw-r--r--src/lib/libcrypto/bn/bntest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/bn/bntest.c b/src/lib/libcrypto/bn/bntest.c
index 3c8c540387..8ef733013d 100644
--- a/src/lib/libcrypto/bn/bntest.c
+++ b/src/lib/libcrypto/bn/bntest.c
@@ -780,7 +780,7 @@ int test_mod_exp(BIO *bp, BN_CTX *ctx)
780 BN_bntest_rand(b,2+i,0,0); /**/ 780 BN_bntest_rand(b,2+i,0,0); /**/
781 781
782 if (!BN_mod_exp(d,a,b,c,ctx)) 782 if (!BN_mod_exp(d,a,b,c,ctx))
783 return(00); 783 return(0);
784 784
785 if (bp != NULL) 785 if (bp != NULL)
786 { 786 {
@@ -831,7 +831,7 @@ int test_exp(BIO *bp, BN_CTX *ctx)
831 BN_bntest_rand(b,2+i,0,0); /**/ 831 BN_bntest_rand(b,2+i,0,0); /**/
832 832
833 if (!BN_exp(d,a,b,ctx)) 833 if (!BN_exp(d,a,b,ctx))
834 return(00); 834 return(0);
835 835
836 if (bp != NULL) 836 if (bp != NULL)
837 { 837 {