From 34bc0866d463fa5cf59d8d07d80e1127fa630462 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Mon, 17 Apr 2006 06:43:27 +0000 Subject: [PATCH] slightly clearer log message when you use a nickname rather than a key for an unnamed server. svn:r6393 --- src/or/routerlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/routerlist.c b/src/or/routerlist.c index a2d70d2c16..c6c3af1a4d 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -1000,7 +1000,7 @@ router_get_by_nickname(const char *nickname, int warn_if_unnamed) base16_encode(fp, sizeof(fp), best_match->cache_info.identity_digest, DIGEST_LEN); log_warn(LD_CONFIG, "You specified a server \"%s\" by name, but the " - "directory authorities do not have a listing for this name. " + "directory authorities do not have a binding for this nickname. " "To make sure you get the same server in the future, refer to " "it by key, as \"$%s\".", nickname, fp); rs->name_lookup_warned = 1;