summaryrefslogtreecommitdiffstats
path: root/lib/libssl/src
diff options
context:
space:
mode:
authoraaron <aaron@openbsd.org>2004-03-17 21:31:34 +0000
committeraaron <aaron@openbsd.org>2004-03-17 21:31:34 +0000
commit64de63c90c5eedea95e4fd61531a1a5224a06e0e (patch)
tree041b219118725f702a2b7a4abefe573607c77eff /lib/libssl/src
parentOtto@ confirms 715/50 needs the viper timeout kluge to be really happy. (diff)
downloadwireguard-openbsd-64de63c90c5eedea95e4fd61531a1a5224a06e0e.tar.xz
wireguard-openbsd-64de63c90c5eedea95e4fd61531a1a5224a06e0e.zip
return(00); -> return(0); markus@ ok
Diffstat (limited to 'lib/libssl/src')
-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)
{