diff options
author | Roger Dingledine <arma@torproject.org> | 2005-07-14 08:43:19 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-07-14 08:43:19 +0000 |
commit | 2259032ea1f19966a6ea37f7b55f529dac8f61e4 (patch) | |
tree | aac4359cc5e8a30e0e476b0bf0075752023f719a /src/or/rendclient.c | |
parent | 57ba20e37657157a42d5f46b61fa69cb7fbaf338 (diff) | |
download | tor-2259032ea1f19966a6ea37f7b55f529dac8f61e4.tar.gz tor-2259032ea1f19966a6ea37f7b55f529dac8f61e4.zip |
trivial changes on nick's rendezvous commit
svn:r4553
Diffstat (limited to 'src/or/rendclient.c')
-rw-r--r-- | src/or/rendclient.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/rendclient.c b/src/or/rendclient.c index e31179355f..d2e9427648 100644 --- a/src/or/rendclient.c +++ b/src/or/rendclient.c @@ -214,7 +214,7 @@ rend_client_introduction_acked(circuit_t *circ, */ if (rend_client_remove_intro_point(circ->build_state->chosen_exit, circ->rend_query) > 0) { - /* There are introduction points left. re-extend the circuit to + /* There are introduction points left. Re-extend the circuit to * another intro point and try again. */ extend_info_t *info; int result; @@ -225,7 +225,7 @@ rend_client_introduction_acked(circuit_t *circ, circuit_mark_for_close(circ); return -1; } - log_fn(LOG_INFO,"Got nack for %s from %s, extending circ %d to %s.", + log_fn(LOG_INFO,"Got nack for %s from %s. Re-extending circ %d, this time to %s.", safe_str(circ->rend_query), circ->build_state->chosen_exit->nickname, circ->n_circ_id, info->nickname); |