diff options
author | Karsten Loesing <karsten.loesing@gmx.net> | 2008-06-20 17:03:13 +0000 |
---|---|---|
committer | Karsten Loesing <karsten.loesing@gmx.net> | 2008-06-20 17:03:13 +0000 |
commit | 33ced73597ca064b0ce7076b1b1127be31dcec75 (patch) | |
tree | acf950b46bde2c64cae13721fd95e29bc8ff83ac /src/or/routerlist.c | |
parent | a2a3d1e3293abb04fef2d73218a224e1e757e214 (diff) | |
download | tor-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.c | 3 |
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; } |