commit 9bcd7e5939ddd8f285ef951bc551a6f623b64748
parent 9ffbe8ad593cd2e9b3a6be29c3e36a8da9e5a9ed
Author: Nick Mathewson <nickm@torproject.org>
Date: Thu, 19 Mar 2020 08:08:58 -0400
Actually log post-bootstrap directory dl totals.
Fixes bug 33651; bug not in any released Tor.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/feature/dirclient/dirclient.c b/src/feature/dirclient/dirclient.c
@@ -1984,7 +1984,7 @@ dirclient_dump_total_dls(void)
for (int bootstrapped = 0; bootstrapped < 2; ++bootstrapped) {
bool first_time = true;
for (int i=0; i < DIR_PURPOSE_MAX_; ++i) {
- uint64_t n = total_dl[i][0];
+ uint64_t n = total_dl[i][bootstrapped];
if (n == 0)
continue;
if (options->SafeLogging_ != SAFELOG_SCRUB_NONE &&