diff options
author | Nick Mathewson <nickm@torproject.org> | 2006-04-25 06:20:47 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2006-04-25 06:20:47 +0000 |
commit | 5bce102cd26d8f8a17eb82b6aab6e6c857d0267e (patch) | |
tree | 2a8b50de2879187baff08ed89c7566917700139e /src/or/routerlist.c | |
parent | 1efbe9d1d51a553d2ca84e5f2372070a261b95f5 (diff) | |
download | tor-5bce102cd26d8f8a17eb82b6aab6e6c857d0267e.tar tor-5bce102cd26d8f8a17eb82b6aab6e6c857d0267e.tar.gz |
Only warn about a down node once
svn:r6420
Diffstat (limited to 'src/or/routerlist.c')
-rw-r--r-- | src/or/routerlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 23e5e83ae..6793d36f9 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -2297,7 +2297,7 @@ router_get_combined_status_by_nickname(const char *nickname, " but none is listed as named by the directory authorites. " "Choosing one arbitrarily."); } - } else if (warn_if_unnamed && best) { + } else if (warn_if_unnamed && best && !best->name_lookup_warned) { char fp[HEX_DIGEST_LEN+1]; base16_encode(fp, sizeof(fp), best->status.identity_digest, DIGEST_LEN); |