diff options
author | Roger Dingledine <arma@torproject.org> | 2005-12-04 21:59:15 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-12-04 21:59:15 +0000 |
commit | 7d032bd3002351736ada282dc058434b9d0450f8 (patch) | |
tree | c1285684c3706aef1700221be7994917e2dd5d30 /src/or | |
parent | d60f514f4c6e463fe188eefcbbcdfe9b4f127e99 (diff) | |
download | tor-7d032bd3002351736ada282dc058434b9d0450f8.tar tor-7d032bd3002351736ada282dc058434b9d0450f8.tar.gz |
take back half of my bugfix. comparing times sucks.
but leave the other half.
svn:r5495
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/circuituse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuituse.c b/src/or/circuituse.c index 5ff39ad2f..e74a62e34 100644 --- a/src/or/circuituse.c +++ b/src/or/circuituse.c @@ -241,7 +241,7 @@ circuit_expire_building(time_t now) /* c_rend_ready circs measure age since timestamp_dirty, * because that's set when they switch purposes */ - if (!victim->rend_query[0] || victim->timestamp_dirty <= cutoff) + if (!victim->rend_query[0] || victim->timestamp_dirty > cutoff) continue; break; case CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED: |