]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
be less noisy about complaining when a jap client tries to connect
authorRoger Dingledine <arma@torproject.org>
Sun, 30 Jan 2005 23:52:47 +0000 (23:52 +0000)
committerRoger Dingledine <arma@torproject.org>
Sun, 30 Jan 2005 23:52:47 +0000 (23:52 +0000)
and we refuse him.

svn:r3472

src/or/connection_or.c

index 3fdf5fc90b95bc856d3f8599206fd4ecab9eab7c..dd678c04bb89a03b03c40d877f3d7206b8df88bc 100644 (file)
@@ -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;
   }