aboutsummaryrefslogtreecommitdiff
path: root/src/or/routerlist.c
diff options
context:
space:
mode:
authorKarsten Loesing <karsten.loesing@gmx.net>2008-06-20 17:03:13 +0000
committerKarsten Loesing <karsten.loesing@gmx.net>2008-06-20 17:03:13 +0000
commit33ced73597ca064b0ce7076b1b1127be31dcec75 (patch)
treeacf950b46bde2c64cae13721fd95e29bc8ff83ac /src/or/routerlist.c
parenta2a3d1e3293abb04fef2d73218a224e1e757e214 (diff)
downloadtor-33ced73597ca064b0ce7076b1b1127be31dcec75.tar
tor-33ced73597ca064b0ce7076b1b1127be31dcec75.tar.gz
Added prefixes to testing-network-only configuration options.
svn:r15375
Diffstat (limited to 'src/or/routerlist.c')
-rw-r--r--src/or/routerlist.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c
index e0fff7ec0..af096ae5c 100644
--- a/src/or/routerlist.c
+++ b/src/or/routerlist.c
@@ -3729,7 +3729,8 @@ client_would_use_router(routerstatus_t *rs, time_t now, or_options_t *options)
* But, if we want to have a complete list, fetch it anyway. */
return 0;
}
- if (rs->published_on + options->EstimatedDescriptorPropagationTime > now) {
+ if (rs->published_on + options->TestingEstimatedDescriptorPropagationTime
+ > now) {
/* Most caches probably don't have this descriptor yet. */
return 0;
}