aboutsummaryrefslogtreecommitdiff
path: root/src/or
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2005-12-04 21:59:15 +0000
committerRoger Dingledine <arma@torproject.org>2005-12-04 21:59:15 +0000
commit7d032bd3002351736ada282dc058434b9d0450f8 (patch)
treec1285684c3706aef1700221be7994917e2dd5d30 /src/or
parentd60f514f4c6e463fe188eefcbbcdfe9b4f127e99 (diff)
downloadtor-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.c2
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: