commit 6dc0b043199d28866cdb466e18caebbf0b051c04 parent 4b9ed14d9bba7b6f5892bbbbcbf81c3e2414c65b Author: David Goulet <dgoulet@torproject.org> Date: Tue, 25 Aug 2020 08:23:06 -0400 Merge branch 'maint-0.4.4' Diffstat:
| A | changes/bug40105 | | | 4 | ++++ |
| M | src/feature/client/entrynodes.c | | | 6 | +++--- |
2 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/changes/bug40105 b/changes/bug40105 @@ -0,0 +1,3 @@ + o Minor bugfixes (guard selection algorithm): + - Avoid needless guard-related warning when upgrading from 0.4.3 to 0.4.4. + Fixes bug 40105; bugfix on 0.4.4.1-alpha. +\ No newline at end of file diff --git a/src/feature/client/entrynodes.c b/src/feature/client/entrynodes.c @@ -3139,9 +3139,9 @@ entry_guard_parse_from_state(const char *s) guard->sampled_idx = guard->confirmed_idx; } else { - log_warn(LD_GUARD, "The state file seems to be into a status that could" - " yield to weird entry node selection: we're missing both a" - " sampled_idx and a confirmed_idx."); + log_info(LD_GUARD, "The state file seems to be into a status that could" + " yield to weird entry node selection: we're missing both a" + " sampled_idx and a confirmed_idx."); guard->sampled_idx = invalid_sampled_idx++; }