mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 04:13:28 +01:00
Don't say "downloading 1 descriptor, 4 at a time"
Fixes bug 19648, bugfix on 0.1.1.8-alpha.
This commit is contained in:
parent
af98b862a5
commit
994595ae5d
5
changes/bug19648
Normal file
5
changes/bug19648
Normal file
@ -0,0 +1,5 @@
|
||||
o Minor bugfixes (logging):
|
||||
- When logging the number of descriptors we intend to download per
|
||||
directory request, do not log a number higher than then the
|
||||
number of descriptors we're fetching in total. Fixes bug 19648;
|
||||
bugfix on 0.1.1.8-alpha.
|
@ -5054,8 +5054,9 @@ launch_descriptor_downloads(int purpose,
|
||||
if (n_per_request > max_dl_per_req)
|
||||
n_per_request = max_dl_per_req;
|
||||
|
||||
if (n_per_request < MIN_DL_PER_REQUEST)
|
||||
n_per_request = MIN_DL_PER_REQUEST;
|
||||
if (n_per_request < MIN_DL_PER_REQUEST) {
|
||||
n_per_request = MIN(MIN_DL_PER_REQUEST, n_downloadable);
|
||||
}
|
||||
|
||||
if (n_downloadable > n_per_request)
|
||||
req_plural = rtr_plural = "s";
|
||||
|
Loading…
Reference in New Issue
Block a user