Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
yhabteab committed Aug 12, 2021
1 parent 023e478 commit c6edf2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/remote/jsonrpcconnection-pki.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ Value RequestCertificateHandler(const MessageOrigin::Ptr& origin, const Dictiona
} catch (const std::exception &ex) {
const unsigned long *openssl_code = boost::get_error_info<errinfo_openssl_error>(ex);
if (openssl_code && *openssl_code == X509_V_ERR_CERT_REVOKED) {
logmsg << " no longer trusted";
logmsg << " not trusted";
} else {
logmsg << " not signed by our CA";
logmsg << " verification failed";
}

if (openssl_code) {
Expand Down

0 comments on commit c6edf2d

Please sign in to comment.