summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authoraaron <>2004-03-17 21:31:34 +0000
committeraaron <>2004-03-17 21:31:34 +0000
commit64ea189ee0511fddc5b6b2271c88779735dd8380 (patch)
tree8dfe84d3494f62b7805827461d3a784690a74f2f /src/lib
parent0514fab896ecd7bd5063c1e0853337a09e156448 (diff)
downloadopenbsd-64ea189ee0511fddc5b6b2271c88779735dd8380.tar.gz
openbsd-64ea189ee0511fddc5b6b2271c88779735dd8380.tar.bz2
openbsd-64ea189ee0511fddc5b6b2271c88779735dd8380.zip
return(00); -> return(0); markus@ ok
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libcrypto/bn/bntest.c4
-rw-r--r--src/lib/libssl/src/crypto/bn/bntest.c4
2 files changed, 4 insertions, 4 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 {
diff --git a/src/lib/libssl/src/crypto/bn/bntest.c b/src/lib/libssl/src/crypto/bn/bntest.c
index 3c8c540387..8ef733013d 100644
--- a/src/lib/libssl/src/crypto/bn/bntest.c
+++ b/src/lib/libssl/src/crypto/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 {