[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[or-cvs] r14165: correct a confusing log message (tor/trunk/src/common)



Author: arma
Date: 2008-03-24 14:37:52 -0400 (Mon, 24 Mar 2008)
New Revision: 14165

Modified:
   tor/trunk/src/common/tortls.c
Log:
correct a confusing log message


Modified: tor/trunk/src/common/tortls.c
===================================================================
--- tor/trunk/src/common/tortls.c	2008-03-24 07:24:09 UTC (rev 14164)
+++ tor/trunk/src/common/tortls.c	2008-03-24 18:37:52 UTC (rev 14165)
@@ -622,7 +622,7 @@
 
 #ifdef V2_HANDSHAKE_SERVER
 /** Return true iff the cipher list suggested by the client for <b>ssl</b> is
- * a list that indicates that the client know how to do the v2 TLS connection
+ * a list that indicates that the client knows how to do the v2 TLS connection
  * handshake. */
 static int
 tor_tls_client_is_using_v2_ciphers(const SSL *ssl, const char *address)
@@ -666,7 +666,7 @@
     }
     s = smartlist_join_strings(elts, ":", 0, NULL);
     log_info(LD_NET, "Got a non-version-1 cipher list from %s.  It is: '%s'",
-             s, address);
+             address, s);
     tor_free(s);
     smartlist_free(elts);
   }