diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-11-12 16:29:31 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-11-12 16:29:31 +0000 |
commit | f7c2d1522e707de73b8d6828f83b11794e2a7102 (patch) | |
tree | fdbbf7435ed3884310496752d20933ad7aa723d4 /src/or | |
parent | 6deca312a7720c5fa7c9679cd93f90b9536ea8f4 (diff) | |
download | tor-f7c2d1522e707de73b8d6828f83b11794e2a7102.tar tor-f7c2d1522e707de73b8d6828f83b11794e2a7102.tar.gz |
r16656@catbus: nickm | 2007-11-12 11:27:00 -0500
Possibly fix bug 548 by making the fix for bug 543 not get invoked on authorities. See changelog and bug 548 entry for rationale.
svn:r12485
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/routerlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index dbf0bbd3f..623176ae8 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -3812,7 +3812,7 @@ update_consensus_router_descriptor_downloads(time_t now) smartlist_add(downloadable, rs->descriptor_digest); }); - if (smartlist_len(no_longer_old)) { + if (!authdir_mode(options) && smartlist_len(no_longer_old)) { routerlist_t *rl = router_get_routerlist(); log_info(LD_DIR, "%d router descriptors listed in consensus are " "currently in old_routers; making them current.", |