[or-cvs] [tor/maint-0.2.2 2/3] Correct a couple of log messages in tortls.c

nickm at torproject.org nickm at torproject.org
Mon Oct 4 17:52:12 UTC 2010


Author: Robert Ransom <rransom.8774 at gmail.com>
Date: Fri, 1 Oct 2010 17:48:07 -0700
Subject: Correct a couple of log messages in tortls.c
Commit: c70d9d77ab304dd490be7bb3fefd0eeb89d37373

---
 changes/bug1994     |    6 ++++++
 src/common/tortls.c |    4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)
 create mode 100644 changes/bug1994

diff --git a/changes/bug1994 b/changes/bug1994
new file mode 100644
index 0000000..07095aa
--- /dev/null
+++ b/changes/bug1994
@@ -0,0 +1,6 @@
+  o Minor bugfixes:
+    - Correctly describe errors that occur when generating a TLS object
+      when logging them.  Previously we would attribtue them to a failure
+      while generating a TLS context.  Bugfix by Robert Ransom.  Bugfix 
+      on 0.1.0.4-rc.
+
diff --git a/src/common/tortls.c b/src/common/tortls.c
index 25d44cc..0304045 100644
--- a/src/common/tortls.c
+++ b/src/common/tortls.c
@@ -930,7 +930,7 @@ tor_tls_new(int sock, int isServer)
 
   tor_assert(global_tls_context); /* make sure somebody made it first */
   if (!(result->ssl = SSL_new(global_tls_context->ctx))) {
-    tls_log_errors(NULL, LOG_WARN, LD_NET, "generating TLS context");
+    tls_log_errors(NULL, LOG_WARN, LD_NET, "creating SSL object");
     tor_free(result);
     return NULL;
   }
@@ -987,7 +987,7 @@ tor_tls_new(int sock, int isServer)
 #endif
 
   /* Not expected to get called. */
-  tls_log_errors(NULL, LOG_WARN, LD_NET, "generating TLS context");
+  tls_log_errors(NULL, LOG_WARN, LD_NET, "creating tor_tls_t object");
   return result;
 }
 
-- 
1.7.1




More information about the tor-commits mailing list