]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Make openssl 0.9.8l log message accurate
authorNick Mathewson <nickm@torproject.org>
Wed, 11 Jan 2012 20:41:46 +0000 (15:41 -0500)
committerNick Mathewson <nickm@torproject.org>
Wed, 11 Jan 2012 20:41:46 +0000 (15:41 -0500)
fixes 4837

changes/bug4837 [new file with mode: 0644]
src/common/tortls.c

diff --git a/changes/bug4837 b/changes/bug4837
new file mode 100644 (file)
index 0000000..16a61d1
--- /dev/null
@@ -0,0 +1,4 @@
+  o Minor bugfixes:
+    - Fix the log message describing how we work around discovering
+      that our version is the ill-fated OpenSSL 0.9.8l. Fixes bug
+      4837; bugfix on 0.2.2.9-alpha.
index 28bb3f9b4132c8c3b164153cf03180f865528880..908337f799991eccfc878df2fdf26af5a7446008 100644 (file)
@@ -475,8 +475,10 @@ tor_tls_init(void)
      * a test of intelligence and determination.
      */
     if (version > OPENSSL_V(0,9,8,'k') && version <= OPENSSL_V(0,9,8,'l')) {
-      log_notice(LD_GENERAL, "OpenSSL %s looks like version 0.9.8l; "
-                 "I will try SSL3_FLAGS to enable renegotation.",
+      log_notice(LD_GENERAL, "OpenSSL %s looks like version 0.9.8l, but "
+                 "some vendors have backported renegotiation code from "
+                 "0.9.8m without updating the version number. "
+                 "I will try SSL3_FLAGS and SSL_OP to enable renegotation.",
                  SSLeay_version(SSLEAY_VERSION));
       use_unsafe_renegotiation_flag = 1;
       use_unsafe_renegotiation_op = 1;