[tor-commits] [tor] 04/07: Add a missing "not" to a message.
gitolite role
git at cupani.torproject.org
Thu Jul 21 19:19:41 UTC 2022
This is an automated email from the git hooks/post-receive script.
nickm pushed a commit to branch main
in repository tor.
commit 0dc9561f21521df07ea587be51321c7cc6e06341
Author: Nick Mathewson <nickm at torproject.org>
AuthorDate: Fri Jun 17 12:00:09 2022 -0400
Add a missing "not" to a message.
Closes #40619.
Bugfix on 0.2.5.4-alpha.
---
changes/bug40619 | 3 +++
src/feature/nodelist/microdesc.c | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/changes/bug40619 b/changes/bug40619
new file mode 100644
index 0000000000..e49c2b5260
--- /dev/null
+++ 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
index a95d535dc0..9e5f0bb9a4 100644
--- 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! */
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the tor-commits
mailing list