summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-11-14 07:56:52 -0500
committerNick Mathewson <nickm@torproject.org>2018-11-14 07:56:52 -0500
commitd098dda776e165647a39ebd7d8dc9982086d8059 (patch)
tree5fbff523afddc13554ca5a00f775da85b6c4521f
parent900d9a8601449632c9203fced8bb767b0dd8f882 (diff)
parenta58b19465d9ffada3df87ea9be769d1f27c414cc (diff)
downloadtor-d098dda776e165647a39ebd7d8dc9982086d8059.tar.gz
tor-d098dda776e165647a39ebd7d8dc9982086d8059.zip
Merge branch 'maint-0.3.5' into release-0.3.5
-rw-r--r--changes/bug284414
-rw-r--r--src/feature/nodelist/nodelist.c3
2 files changed, 5 insertions, 2 deletions
diff --git a/changes/bug28441 b/changes/bug28441
new file mode 100644
index 0000000000..d259b9f742
--- /dev/null
+++ b/changes/bug28441
@@ -0,0 +1,4 @@
+ o Minor bugfixes (logging):
+ - Stop talking about the Named flag in log messages. Clients have
+ ignored the Named flag since 0.3.2. Fixes bug 28441;
+ bugfix on 0.3.2.1-alpha.
diff --git a/src/feature/nodelist/nodelist.c b/src/feature/nodelist/nodelist.c
index c77ef443d0..a39eb1d5b8 100644
--- a/src/feature/nodelist/nodelist.c
+++ b/src/feature/nodelist/nodelist.c
@@ -1019,8 +1019,7 @@ node_get_by_nickname,(const char *nickname, unsigned flags))
} SMARTLIST_FOREACH_END(node);
if (any_unwarned) {
- log_warn(LD_CONFIG, "There are multiple matches for the name %s, "
- "but none is listed as Named in the directory consensus. "
+ log_warn(LD_CONFIG, "There are multiple matches for the name %s. "
"Choosing one arbitrarily.", nickname);
}
} else if (smartlist_len(matches)==1 && warn_if_unnamed) {