Skip to content
Snippets Groups Projects
Commit 0b82ce3e authored by Sebastian Hahn's avatar Sebastian Hahn Committed by Roger Dingledine
Browse files

Demote a warning about missing client ciphers

parent 18678e5f
No related branches found
No related tags found
No related merge requests found
o Minor bugfixes:
- Demote a warning that relay operators might get when someone is
trying to talk to their OrPort. It is neither the operator's fault
nor can they do anything about it. Bugfix on 0.2.0.14-alpha; fixes
bug 1364.
......@@ -746,11 +746,11 @@ tor_tls_client_is_using_v2_ciphers(const SSL *ssl, const char *address)
/* If we reached this point, we just got a client hello. See if there is
* a cipher list. */
if (!(session = SSL_get_session((SSL *)ssl))) {
log_warn(LD_NET, "No session on TLS?");
log_info(LD_NET, "No session on TLS?");
return 0;
}
if (!session->ciphers) {
log_warn(LD_NET, "No ciphers on session");
log_info(LD_NET, "No ciphers on session");
return 0;
}
/* Now we need to see if there are any ciphers whose presence means we're
......
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