diff options
author | Nick Mathewson <nickm@torproject.org> | 2010-09-27 12:41:41 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2010-09-27 14:22:18 -0400 |
commit | b49cf6a77a75051bcc5a0ed62d89d04abe3eb880 (patch) | |
tree | cc3f2271e314619a176ed398e5259fbf1bfba2c4 /src/common/tortls.c | |
parent | a16ed90ec8abc329aafe0b893a7533fff480d2ff (diff) | |
download | tor-b49cf6a77a75051bcc5a0ed62d89d04abe3eb880.tar tor-b49cf6a77a75051bcc5a0ed62d89d04abe3eb880.tar.gz |
Fix whitespace in bufferevents branch
Diffstat (limited to 'src/common/tortls.c')
-rw-r--r-- | src/common/tortls.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/common/tortls.c b/src/common/tortls.c index 318cb4088..d9f1d875d 100644 --- a/src/common/tortls.c +++ b/src/common/tortls.c @@ -1232,8 +1232,8 @@ tor_tls_finish_handshake(tor_tls_t *tls) " get set. Fixing that."); } tls->wasV2Handshake = 1; - log_debug(LD_HANDSHAKE, "Completed V2 TLS handshake with client; waiting " - "for renegotiation."); + log_debug(LD_HANDSHAKE, "Completed V2 TLS handshake with client; waiting" + " for renegotiation."); } else { tls->wasV2Handshake = 0; } @@ -1273,7 +1273,8 @@ tor_tls_start_renegotiating(tor_tls_t *tls) { int r = SSL_renegotiate(tls->ssl); if (r <= 0) { - return tor_tls_get_error(tls, r, 0, "renegotiating", LOG_WARN, LD_HANDSHAKE); + return tor_tls_get_error(tls, r, 0, "renegotiating", LOG_WARN, + LD_HANDSHAKE); } return 0; } |