diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-01-21 13:00:14 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-01-21 13:00:14 -0500 |
commit | 523e920d53e23c05de010a057a0b07e012334ab6 (patch) | |
tree | aae1d726d31d77e954eff304fead80507eb6ae6d | |
parent | b56c7614b64a3129df069e3ec161973073b127ef (diff) | |
download | tor-523e920d53e23c05de010a057a0b07e012334ab6.tar.gz tor-523e920d53e23c05de010a057a0b07e012334ab6.zip |
fix a comment
-rw-r--r-- | src/or/circuitbuild.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index e01aca959a..6d5bbbf16c 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -552,9 +552,9 @@ circuit_handle_first_hop(origin_circuit_t *circ) * * Status is 1 if connect succeeded, or 0 if connect failed. * - * Close_origin_circs is 1 if we should close all the origin circuits through - * this channel, or 0 otherwise. (This happens when we want to retry an - * older guard.) + * Close_origin_circuits is 1 if we should close all the origin circuits + * through this channel, or 0 otherwise. (This happens when we want to retry + * an older guard.) */ void circuit_n_chan_done(channel_t *chan, int status, int close_origin_circuits) |