Skip to content
Snippets Groups Projects
Commit 0355d29e authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Call tls_log_errors at a more appropriate location; we can remove the other...

Call tls_log_errors at a more appropriate location; we can remove the other calls in tor_tls_verify once we are sure they never happen.


svn:r1709
parent 75dc76eb
No related branches found
No related tags found
No related merge requests found
......@@ -580,6 +580,7 @@ tor_tls_verify(tor_tls *tls, crypto_pk_env_t *identity_key)
if (!(id_pkey = _crypto_pk_env_get_evp_pkey(identity_key,0)) ||
X509_verify(cert, id_pkey) <= 0) {
log_fn(LOG_WARN,"X509_verify on cert and pkey returned <= 0");
tls_log_errors(LOG_WARN,"verifying certificate");
goto done;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment