commit 2eb78e206187fb8df72854dd26f1621a53201208
parent 6b0a40c81eddc1ab79ad71947f85a92206947c81
Author: Nick Mathewson <nickm@torproject.org>
Date: Wed, 25 Mar 2020 10:38:01 -0400
Merge branch 'bug33651'
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 &&