diff options
author | Geoff Thorpe <geoff@openssl.org> | 2004-07-16 03:24:51 +0000 |
---|---|---|
committer | Geoff Thorpe <geoff@openssl.org> | 2004-07-16 03:24:51 +0000 |
commit | 0210065bbdffe0418c19c9015c984476c1d66d71 (patch) | |
tree | b67494c63f0af1fb348e2b11cf34293acf63fd28 /crypto/ecdsa/ecdsatest.c | |
parent | 7f5b4dd1e8596f7043a7da76b3e2f6675db8cd87 (diff) | |
download | openssl-new-0210065bbdffe0418c19c9015c984476c1d66d71.tar.gz |
Quick fix.
Submitted by: Nils Larsch
Diffstat (limited to 'crypto/ecdsa/ecdsatest.c')
-rw-r--r-- | crypto/ecdsa/ecdsatest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ecdsa/ecdsatest.c b/crypto/ecdsa/ecdsatest.c index 401b23c694..44321c5ac6 100644 --- a/crypto/ecdsa/ecdsatest.c +++ b/crypto/ecdsa/ecdsatest.c @@ -483,7 +483,7 @@ err: BIO_printf(out, "\nECDSA test failed\n"); else BIO_printf(out, "\nECDSA test passed\n"); - if (!ret) + if (ret) ERR_print_errors(out); CRYPTO_cleanup_all_ex_data(); ERR_remove_state(0); |