diff options
author | lloyd <[email protected]> | 2010-03-19 17:56:53 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-03-19 17:56:53 +0000 |
commit | 8fa0099ce0f2f488ca4c5046c6d019125d1d3b68 (patch) | |
tree | 7710598b0ec63aad5424644d4e0716f160d8005c /checks | |
parent | 7fc39f47ea9fb307f765eeaba8f21988c1ca6b00 (diff) |
If check against copy fails, print algo name
Diffstat (limited to 'checks')
-rw-r--r-- | checks/x509.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checks/x509.cpp b/checks/x509.cpp index 96d99eee2..59bc8444b 100644 --- a/checks/x509.cpp +++ b/checks/x509.cpp @@ -119,7 +119,7 @@ u32bit check_against_copy(const Private_Key& orig, if(orig_id != pub_id || orig_id != priv_id || orig_id != priv_enc_id) { - std::cout << "Failed copy check\n"; + std::cout << "Failed copy check for " << orig.algo_name() << "\n"; return 1; } return 0; |