From 901e2ad04b162d0ec00d166c394b8febf6cf5120 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Mon, 24 Mar 2008 18:37:52 +0000 Subject: correct a confusing log message svn:r14165 --- src/common/tortls.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/common/tortls.c') diff --git a/src/common/tortls.c b/src/common/tortls.c index fb5fb7ee1a..ac2f8ebc8a 100644 --- a/src/common/tortls.c +++ b/src/common/tortls.c @@ -622,7 +622,7 @@ tor_tls_context_new(crypto_pk_env_t *identity, unsigned int key_lifetime) #ifdef V2_HANDSHAKE_SERVER /** Return true iff the cipher list suggested by the client for ssl 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 @@ tor_tls_client_is_using_v2_ciphers(const SSL *ssl, const char *address) } 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); } -- cgit v1.2.3-54-g00ecf