aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2007-02-24 05:36:45 +0000
committerRoger Dingledine <arma@torproject.org>2007-02-24 05:36:45 +0000
commit748c502e3a9b11e1565c1f463fedd093e41b65e2 (patch)
tree10dfe0957b2a2732c65e641c13aa5dc2bbac2d22
parentd63c58249ed9ed7ba227bc00be66f33dce89b822 (diff)
downloadtor-748c502e3a9b11e1565c1f463fedd093e41b65e2.tar.gz
tor-748c502e3a9b11e1565c1f463fedd093e41b65e2.zip
fix a log message that was broken long ago and never noticed
svn:r9630
-rw-r--r--src/or/routerlist.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c
index e9ac4534e3..630a36f98e 100644
--- a/src/or/routerlist.c
+++ b/src/or/routerlist.c
@@ -1177,7 +1177,7 @@ router_choose_random_node(const char *preferred,
if (!choice) {
if (strict) {
log_warn(LD_CIRC, "All preferred nodes were down when trying to choose "
- "node, and the Strict[...]Nodes option was set. Failing.");
+ "node, and the Strict[...]Nodes option is set. Failing.");
} else {
log_warn(LD_CIRC,
"No available nodes when trying to choose node. Failing.");
@@ -2685,9 +2685,9 @@ router_get_combined_status_by_nickname(const char *nickname,
}
});
if (any_unwarned) {
- log_warn(LD_CONFIG,"There are multiple matches for the nickname \"%s\",",
+ log_warn(LD_CONFIG,"There are multiple matches for the nickname \"%s\","
" but none is listed as named by the directory authorites. "
- "Choosing one arbitrarily.");
+ "Choosing one arbitrarily.", nickname);
}
} else if (warn_if_unnamed && best && !best->name_lookup_warned) {
char fp[HEX_DIGEST_LEN+1];