[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r9630: fix a log message that was broken long ago and never noticed (tor/trunk/src/or)
- To: or-cvs@xxxxxxxxxxxxx
- Subject: [or-cvs] r9630: fix a log message that was broken long ago and never noticed (tor/trunk/src/or)
- From: arma@xxxxxxxx
- Date: Sat, 24 Feb 2007 00:36:49 -0500 (EST)
- Delivered-to: archiver@seul.org
- Delivered-to: or-cvs-outgoing@seul.org
- Delivered-to: or-cvs@seul.org
- Delivery-date: Sat, 24 Feb 2007 00:37:05 -0500
- Reply-to: or-talk@xxxxxxxxxxxxx
- Sender: owner-or-cvs@xxxxxxxxxxxxx
Author: arma
Date: 2007-02-24 00:36:45 -0500 (Sat, 24 Feb 2007)
New Revision: 9630
Modified:
tor/trunk/src/or/routerlist.c
Log:
fix a log message that was broken long ago and never noticed
Modified: tor/trunk/src/or/routerlist.c
===================================================================
--- tor/trunk/src/or/routerlist.c 2007-02-24 04:17:29 UTC (rev 9629)
+++ tor/trunk/src/or/routerlist.c 2007-02-24 05:36:45 UTC (rev 9630)
@@ -1177,7 +1177,7 @@
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 @@
}
});
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];