diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-03-04 18:58:38 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-03-04 18:58:38 +0000 |
commit | 70e5a83a77900121ea66a28e8743ea3b25135dea (patch) | |
tree | 7546e9b987d09856d7fd77ac71f8237f5c5f9c32 /src/or/routerlist.c | |
parent | 5f9f62daa29a58ba855c8318f814eb527ae38066 (diff) | |
download | tor-70e5a83a77900121ea66a28e8743ea3b25135dea.tar.gz tor-70e5a83a77900121ea66a28e8743ea3b25135dea.zip |
r12057@catbus: nickm | 2007-03-04 13:58:32 -0500
Clarify some log messages; note others that could be improved later.
svn:r9724
Diffstat (limited to 'src/or/routerlist.c')
-rw-r--r-- | src/or/routerlist.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index b0141f51da..3b00d4cf8f 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -1322,8 +1322,9 @@ router_get_by_nickname(const char *nickname, int warn_if_unnamed) char fp[HEX_DIGEST_LEN+1]; 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 binding for this nickname. " + log_warn(LD_CONFIG, "You specified a server \"%s\" by name, but this " + "name is not registered, so it could be used by any server, " + "not just the one you meant. " "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; |