diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-08-02 14:02:35 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-08-02 14:02:35 -0400 |
commit | 7b896fe61ef7f8d5dfac453457db54819a6bc72b (patch) | |
tree | 6b0af2b6658b2bedb4a0e37075703582e947e16b /src/or/connection.c | |
parent | 4d4ccc505b0c9639c68b42645d5a29497c48fe4d (diff) | |
download | tor-7b896fe61ef7f8d5dfac453457db54819a6bc72b.tar.gz tor-7b896fe61ef7f8d5dfac453457db54819a6bc72b.zip |
Remove/fix remaining evbuffer references
Diffstat (limited to 'src/or/connection.c')
-rw-r--r-- | src/or/connection.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/connection.c b/src/or/connection.c index ceb2883e3f..68e442df54 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -2205,7 +2205,7 @@ connection_send_socks5_connect(connection_t *conn) conn->proxy_state = PROXY_SOCKS5_WANT_CONNECT_OK; } -/** Wrapper around fetch_from_(buf/evbuffer)_socks_client: see those functions +/** Wrapper around fetch_from_buf_socks_client: see that functions * for documentation of its behavior. */ static int connection_fetch_from_buf_socks_client(connection_t *conn, @@ -4361,7 +4361,7 @@ connection_flushed_some(connection_t *conn) } /** We just finished flushing bytes to the appropriately low network layer, - * and there are no more bytes remaining in conn-\>outbuf, conn-\>bev, or + * and there are no more bytes remaining in conn-\>outbuf or * conn-\>tls to be flushed. * * This function just passes conn to the connection-specific |