aboutsummaryrefslogtreecommitdiff
path: root/src/or/circuitbuild.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2005-04-07 21:07:19 +0000
committerNick Mathewson <nickm@torproject.org>2005-04-07 21:07:19 +0000
commit8cc3307e0d240454985154504dfe8852c3cbb66a (patch)
tree59d8d756aa41507388e7edbe545c234f3cdbd28e /src/or/circuitbuild.c
parentdd98412ce122b84a01fb01e24068c9d7e95cb04f (diff)
downloadtor-8cc3307e0d240454985154504dfe8852c3cbb66a.tar
tor-8cc3307e0d240454985154504dfe8852c3cbb66a.tar.gz
Improve conn_*_to_string; add circuit_state_to_string; make skewed-descriptor messages better.
svn:r4047
Diffstat (limited to 'src/or/circuitbuild.c')
-rw-r--r--src/or/circuitbuild.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c
index c3e057d6c..d5afffb53 100644
--- a/src/or/circuitbuild.c
+++ b/src/or/circuitbuild.c
@@ -185,7 +185,7 @@ circuit_dump_details(int severity, circuit_t *circ, int poll_index,
const char *type, int this_circid, int other_circid) {
log(severity,"Conn %d has %s circuit: circID %d (other side %d), state %d (%s), born %d:",
poll_index, type, this_circid, other_circid, circ->state,
- circuit_state_to_string[circ->state], (int)circ->timestamp_created);
+ circuit_state_to_string(circ->state), (int)circ->timestamp_created);
if (CIRCUIT_IS_ORIGIN(circ)) { /* circ starts at this node */
circuit_log_path(severity, circ);
}