diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-08-08 15:22:30 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-09-05 13:57:51 -0400 |
commit | d61da9e61fa0ea15789464c7c3754a9af30fcbb4 (patch) | |
tree | 839c7d5e6cdf7a3ed9cb7d67edf1a7c5884e3c1a /src/or/main.c | |
parent | 4a7e90adc5828263a5d2dc3744818f2189c04bc7 (diff) | |
download | tor-d61da9e61fa0ea15789464c7c3754a9af30fcbb4.tar.gz tor-d61da9e61fa0ea15789464c7c3754a9af30fcbb4.zip |
Repair wide lines from previous commit.
Diffstat (limited to 'src/or/main.c')
-rw-r--r-- | src/or/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/main.c b/src/or/main.c index 9dc84f7deb..e9b50763f3 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -855,7 +855,8 @@ conn_close_if_marked(int i) } else retval = -1; /* never flush non-open broken tls connections */ } else { - retval = buf_flush_to_socket(conn->s, conn->outbuf, sz, &conn->outbuf_flushlen); + retval = buf_flush_to_socket(conn->s, conn->outbuf, sz, + &conn->outbuf_flushlen); } if (retval >= 0 && /* Technically, we could survive things like TLS_WANT_WRITE here. But don't bother for now. */ |