diff options
author | Nick Mathewson <nickm@torproject.org> | 2009-05-28 16:07:49 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2009-05-28 16:07:49 -0400 |
commit | 4913a8c4badca374e43d898cea4b80d14d9ef5e3 (patch) | |
tree | 4592a8f6daa1841081196771493197a900771729 /src/or/circuituse.c | |
parent | 2c8b56c029988adf65c38fc34fdba6d91cd0608c (diff) | |
parent | 873faffb5ae1284b522041f7a8b2e3bbcd53e416 (diff) | |
download | tor-4913a8c4badca374e43d898cea4b80d14d9ef5e3.tar.gz tor-4913a8c4badca374e43d898cea4b80d14d9ef5e3.zip |
Merge commit 'origin/maint-0.2.1'
Diffstat (limited to 'src/or/circuituse.c')
-rw-r--r-- | src/or/circuituse.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/circuituse.c b/src/or/circuituse.c index 92e0746369..a2110a4da4 100644 --- a/src/or/circuituse.c +++ b/src/or/circuituse.c @@ -642,7 +642,8 @@ circuit_expire_old_circuits(time_t now) if (circ->timestamp_dirty && circ->timestamp_dirty + get_options()->MaxCircuitDirtiness < now && !TO_ORIGIN_CIRCUIT(circ)->p_streams /* nothing attached */ ) { - log_debug(LD_CIRC, "Closing n_circ_id %d (dirty %d secs ago, purpose %d)", + log_debug(LD_CIRC, "Closing n_circ_id %d (dirty %d secs ago, " + "purpose %d)", circ->n_circ_id, (int)(now - circ->timestamp_dirty), circ->purpose); circuit_mark_for_close(circ, END_CIRC_REASON_FINISHED); |