aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/bn/bntest.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-11-29 13:40:08 +0000
committerBodo Möller <bodo@openssl.org>2000-11-29 13:40:08 +0000
commit03a0848922d3a4b1a6f216df1c2470a6b946cd87 (patch)
treeff3d559e754b6cfefa15a90eb8bde0171266fe8b /crypto/bn/bntest.c
parent9161672950b6408a025833ed7a3d84b3e0ba9944 (diff)
downloadopenssl-03a0848922d3a4b1a6f216df1c2470a6b946cd87.tar.gz
Fix warnings in expspeed.c (but the segmentation fault remains)
Improve readability of bn_shift.c. Add comment in bn_lib.c (why zero data between top and max?) Change bntest.c output for BN_kronecker test
Diffstat (limited to 'crypto/bn/bntest.c')
-rw-r--r--crypto/bn/bntest.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/crypto/bn/bntest.c b/crypto/bn/bntest.c
index 84412f31f3..86d384428c 100644
--- a/crypto/bn/bntest.c
+++ b/crypto/bn/bntest.c
@@ -981,9 +981,12 @@ int test_kron(BIO *bp, BN_CTX *ctx)
goto err;
}
- fprintf(stderr, "ok\n");
+ putc('.', stderr);
+ fflush(stderr);
}
+ putc('\n', stderr);
+ fflush(stderr);
ret = 1;
err:
if (a != NULL) BN_free(a);