From: Mike Perry Date: Wed, 27 Mar 2013 03:28:19 +0000 (-0700) Subject: Bug 6572: Use timestamp_created for liveness sanity checks. X-Git-Tag: tor-0.2.4.12-alpha~5^2~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=65c0489dd4f0e10230f5c2fbb772a58e03e939bb;p=thirdparty%2Ftor.git Bug 6572: Use timestamp_created for liveness sanity checks. This should eliminate potential regressions caused by #7341. --- diff --git a/src/or/circuituse.c b/src/or/circuituse.c index f02597e630..14576f13d6 100644 --- a/src/or/circuituse.c +++ b/src/or/circuituse.c @@ -671,7 +671,7 @@ circuit_expire_building(void) circuit_purpose_to_string(victim->purpose)); } else if (circuit_build_times_count_close(&circ_times, first_hop_succeeded, - victim->timestamp_began.tv_sec)) { + victim->timestamp_created.tv_sec)) { circuit_build_times_set_timeout(&circ_times); } }