diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-03-26 10:31:56 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-03-26 10:31:56 -0400 |
commit | 6da2544f207a541b90a5c5fddbd038800e19d903 (patch) | |
tree | e32d54be9d9b8396f5280414eef154cee20c43ed /src/or | |
parent | 07eb481492ddd24f403ef75db65a00b38f2b5d92 (diff) | |
download | tor-6da2544f207a541b90a5c5fddbd038800e19d903.tar tor-6da2544f207a541b90a5c5fddbd038800e19d903.tar.gz |
Turn off testing code for #9683.
(This wasn't supposed to get committed turned-on.)
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/circuitlist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c index b1efde5ad..931332550 100644 --- a/src/or/circuitlist.c +++ b/src/or/circuitlist.c @@ -1077,15 +1077,15 @@ circuit_get_by_edge_conn(edge_connection_t *conn) void circuit_unlink_all_from_channel(channel_t *chan, int reason) { - circuit_t *circ; smartlist_t *detached = smartlist_new(); -#define DEBUG_CIRCUIT_UNLINK_ALL +/* #define DEBUG_CIRCUIT_UNLINK_ALL */ channel_unlink_all_circuits(chan, detached); #ifdef DEBUG_CIRCUIT_UNLINK_ALL { + circuit_t *circ; smartlist_t *detached_2 = smartlist_new(); int mismatch = 0, badlen = 0; |