diff options
author | Roger Dingledine <arma@torproject.org> | 2004-04-06 21:25:11 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-04-06 21:25:11 +0000 |
commit | d473cf7ee93bd191d22c387cfbcf1f1db651dd8f (patch) | |
tree | c3b6d8e6e3795aea17b6eb8130fe6533880dd175 /src/or/circuit.c | |
parent | 8b371c2aa536c30926bcf48e1ff2a756e139a08d (diff) | |
download | tor-d473cf7ee93bd191d22c387cfbcf1f1db651dd8f.tar.gz tor-d473cf7ee93bd191d22c387cfbcf1f1db651dd8f.zip |
set the circ windows on the middle hop of the rend circs
svn:r1511
Diffstat (limited to 'src/or/circuit.c')
-rw-r--r-- | src/or/circuit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuit.c b/src/or/circuit.c index c39f8b3171..89b728f8b2 100644 --- a/src/or/circuit.c +++ b/src/or/circuit.c @@ -945,7 +945,7 @@ void circuit_log_path(int severity, circuit_t *circ) { router->nickname, states[hop->state]); } else { if(circ->purpose == CIRCUIT_PURPOSE_C_REND_JOINED) { - snprintf(s, sizeof(buf) - (s - buf), "(rend join)"); + snprintf(s, sizeof(buf) - (s - buf), "(rendjoin hop)"); } else { snprintf(s, sizeof(buf) - (s - buf), "UNKNOWN "); } |