commit 3cee70e87d46369ffb7f1c1da78c5f32add01e13
parent 0bd206506244eab695af926d551e5a051a476f6a
Author: Nick Mathewson <nickm@torproject.org>
Date: Thu, 21 Jul 2022 15:19:28 -0400
Merge remote-tracking branch 'tor-gitlab/mr/592'
Diffstat:
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/changes/bug40619 b/changes/bug40619
@@ -0,0 +1,3 @@
+ o Minor bugfixes (logging):
+ - Correct a log message when cleaning microdescriptors.
+ Fixes bug 40619; bugfix on 0.2.5.4-alpha.
diff --git a/src/feature/nodelist/microdesc.c b/src/feature/nodelist/microdesc.c
@@ -626,7 +626,7 @@ microdesc_cache_clean(microdesc_cache_t *cache, time_t cutoff, int force)
(*mdp)->digest, DIGEST256_LEN)) {
rs_match = "Microdesc digest in RS matches";
} else {
- rs_match = "Microdesc digest in RS does match";
+ rs_match = "Microdesc digest in RS does not match";
}
if (ns) {
/* This should be impossible, but let's see! */