diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-08-22 20:46:40 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-08-22 20:46:40 -0400 |
commit | 8bf2892f51eb15dcba2a174968efa3cb12d5b6b6 (patch) | |
tree | 7e7edeadd87de62dd9f0b105fb2135b329b7bdbe | |
parent | 64410cc88888ff964a82613cc53475def98d9de7 (diff) | |
parent | 2530c842207ecbec0d178fa5ce804a61a1c6ec6c (diff) | |
download | tor-8bf2892f51eb15dcba2a174968efa3cb12d5b6b6.tar.gz tor-8bf2892f51eb15dcba2a174968efa3cb12d5b6b6.zip |
Merge remote-tracking branch 'public/bug9564' into maint-0.2.3
-rw-r--r-- | changes/bug9564 | 5 | ||||
-rw-r--r-- | src/or/networkstatus.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/changes/bug9564 b/changes/bug9564 new file mode 100644 index 0000000000..0df00e3698 --- /dev/null +++ b/changes/bug9564 @@ -0,0 +1,5 @@ + o Minor bugfixes: + - If the time to download the next old-style networkstatus is in + the future, do not decline to consider whether to download the + next microdescriptor networkstatus. Fixes bug 9564. Bugfix on + 0.2.3.14-alpha. diff --git a/src/or/networkstatus.c b/src/or/networkstatus.c index 2553a74e50..e780eadac7 100644 --- a/src/or/networkstatus.c +++ b/src/or/networkstatus.c @@ -1239,7 +1239,7 @@ update_consensus_networkstatus_downloads(time_t now) } if (time_to_download_next_consensus[i] > now) - return; /* Wait until the current consensus is older. */ + continue; /* Wait until the current consensus is older. */ resource = networkstatus_get_flavor_name(i); |