]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Demote a warning about missing client ciphers
authorSebastian Hahn <sebastian@torproject.org>
Mon, 19 Apr 2010 20:38:44 +0000 (22:38 +0200)
committerRoger Dingledine <arma@torproject.org>
Tue, 20 Apr 2010 07:57:33 +0000 (03:57 -0400)
changes/demote_no_cipher_warning [new file with mode: 0644]
src/common/tortls.c

diff --git a/changes/demote_no_cipher_warning b/changes/demote_no_cipher_warning
new file mode 100644 (file)
index 0000000..24fcfdd
--- /dev/null
@@ -0,0 +1,5 @@
+  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.
index 9adbfa41f1fb2127f191648d4d4172e64215bcac..218f110d8cc863c4b2408778e9fdd0317deb0ebc 100644 (file)
@@ -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