diff options
author | Bodo Möller <bodo@openssl.org> | 2002-11-14 11:57:45 +0100 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 2002-11-14 11:57:45 +0100 |
commit | 3bd16a8902ed5c59122cf118221d8619396de8c5 (patch) | |
tree | c6e235496f70a8cf716bd3f4d8651d02d425ecb2 /crypto | |
parent | use new BIO_indent() function here as well (diff) | |
download | openssl-3bd16a8902ed5c59122cf118221d8619396de8c5.tar.xz openssl-3bd16a8902ed5c59122cf118221d8619396de8c5.zip |
fix output
Submitted by: Nils Larsch
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/ecdh/ecdhtest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/ecdh/ecdhtest.c b/crypto/ecdh/ecdhtest.c index 1b9648f065..32b6a9ab89 100644 --- a/crypto/ecdh/ecdhtest.c +++ b/crypto/ecdh/ecdhtest.c @@ -222,7 +222,7 @@ int test_ecdh_curve(int nid, char *text, BN_CTX *ctx, BIO *out) if ((aout < 4) || (bout != aout) || (memcmp(abuf,bbuf,aout) != 0)) { #ifndef NOISY - BIO_printf(out, "failed\n\n"); + BIO_printf(out, " failed\n\n"); BIO_printf(out, "key a:\n"); BIO_printf(out, "private key: "); BN_print(out, a->priv_key); @@ -261,7 +261,7 @@ int test_ecdh_curve(int nid, char *text, BN_CTX *ctx, BIO *out) else { #ifndef NOISY - BIO_printf(out, "ok\n"); + BIO_printf(out, " ok\n"); #endif ret=1; } |