summaryrefslogtreecommitdiff
path: root/lib/libssl
diff options
context:
space:
mode:
authorAaron Campbell <aaron@cvs.openbsd.org>2004-03-17 21:31:35 +0000
committerAaron Campbell <aaron@cvs.openbsd.org>2004-03-17 21:31:35 +0000
commit67db91d7b6c1525664ba3623d71d3ed3607a49a5 (patch)
treed9b6c61414a5679a1209e2ffaf1cfc632d0546fc /lib/libssl
parent2d11b10bedb9cf6c51fc05ee987357670e70ffe8 (diff)
return(00); -> return(0); markus@ ok
Diffstat (limited to 'lib/libssl')
-rw-r--r--lib/libssl/src/crypto/bn/bntest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/src/crypto/bn/bntest.c b/lib/libssl/src/crypto/bn/bntest.c
index 3c8c540387a..8ef733013d6 100644
--- a/lib/libssl/src/crypto/bn/bntest.c
+++ b/lib/libssl/src/crypto/bn/bntest.c
@@ -780,7 +780,7 @@ int test_mod_exp(BIO *bp, BN_CTX *ctx)
BN_bntest_rand(b,2+i,0,0); /**/
if (!BN_mod_exp(d,a,b,c,ctx))
- return(00);
+ return(0);
if (bp != NULL)
{
@@ -831,7 +831,7 @@ int test_exp(BIO *bp, BN_CTX *ctx)
BN_bntest_rand(b,2+i,0,0); /**/
if (!BN_exp(d,a,b,ctx))
- return(00);
+ return(0);
if (bp != NULL)
{