summaryrefslogtreecommitdiff
path: root/src/or/connection_or.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2005-01-30 23:52:47 +0000
committerRoger Dingledine <arma@torproject.org>2005-01-30 23:52:47 +0000
commit5d8659429e9c2868d2ae6dcbc780ec41a459abba (patch)
tree345cc631cf959a78e19f6eeb68e41f434c706d7c /src/or/connection_or.c
parente14417f1303c7510e792bad09e50192593cf6874 (diff)
downloadtor-5d8659429e9c2868d2ae6dcbc780ec41a459abba.tar.gz
tor-5d8659429e9c2868d2ae6dcbc780ec41a459abba.zip
be less noisy about complaining when a jap client tries to connect
and we refuse him. svn:r3472
Diffstat (limited to 'src/or/connection_or.c')
-rw-r--r--src/or/connection_or.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/connection_or.c b/src/or/connection_or.c
index 3fdf5fc90b..dd678c04bb 100644
--- a/src/or/connection_or.c
+++ b/src/or/connection_or.c
@@ -345,7 +345,7 @@ connection_tls_finish_handshake(connection_t *conn) {
connection_watch_events(conn, EV_READ);
log_fn(LOG_DEBUG,"tls handshake done. verifying.");
if (! tor_tls_peer_has_cert(conn->tls)) {
- log_fn(LOG_WARN,"Peer didn't send a cert! Closing.");
+ log_fn(LOG_INFO,"Peer didn't send a cert! Closing.");
/* XXX we should handle this case rather than just closing. */
return -1;
}