diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-11-13 13:46:47 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-11-13 13:46:47 -0500 |
commit | 7a940fac1c7f0ff81f58ed26350fed57e26b2642 (patch) | |
tree | 63ead66aa0b78a8f680ff87b80be2b927e12953f /src/or/circuitlist.c | |
parent | d4672273233d539889f85cad1676395e46e48ef7 (diff) | |
download | tor-7a940fac1c7f0ff81f58ed26350fed57e26b2642.tar.gz tor-7a940fac1c7f0ff81f58ed26350fed57e26b2642.zip |
appease check-spaces
Diffstat (limited to 'src/or/circuitlist.c')
-rw-r--r-- | src/or/circuitlist.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c index 324f9f3c93..c4992d47ff 100644 --- a/src/or/circuitlist.c +++ b/src/or/circuitlist.c @@ -44,8 +44,8 @@ static smartlist_t *global_circuitlist = NULL; /** A list of all the circuits in CIRCUIT_STATE_CHAN_WAIT. */ static smartlist_t *circuits_pending_chans = NULL; -/** A list of all the circuits that have been marked with circuit_mark_for_close - * and which are waiting for circuit_about_to_free(). */ +/** A list of all the circuits that have been marked with + * circuit_mark_for_close and which are waiting for circuit_about_to_free. */ static smartlist_t *circuits_pending_close = NULL; static void circuit_free_cpath_node(crypt_path_t *victim); @@ -1860,7 +1860,6 @@ circuit_about_to_free(circuit_t *circ) connection_edge_destroy(circ->n_circ_id, conn); ocirc->p_streams = NULL; } - } /** Given a marked circuit <b>circ</b>, aggressively free its cell queues to |