aboutsummaryrefslogtreecommitdiff
path: root/src/or/nodelist.c
diff options
context:
space:
mode:
authorNeel Chauhan <neel@neelc.org>2017-09-09 17:12:37 -0400
committerNick Mathewson <nickm@torproject.org>2017-09-12 09:52:07 -0400
commit42b5e3cbb76eb4a7e0dcca8945217351c3ef1bb4 (patch)
treed6eccf8ffc2afbf98a68791dff1389c861b2e6a7 /src/or/nodelist.c
parent4ace1b96ac2050e2d7c237af6fbf880f38be76bb (diff)
downloadtor-42b5e3cbb76eb4a7e0dcca8945217351c3ef1bb4.tar.gz
tor-42b5e3cbb76eb4a7e0dcca8945217351c3ef1bb4.zip
Remove networkstatus_nickname_is_unnamed()
Diffstat (limited to 'src/or/nodelist.c')
-rw-r--r--src/or/nodelist.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/or/nodelist.c b/src/or/nodelist.c
index 00b8fb144f..394c3ae736 100644
--- a/src/or/nodelist.c
+++ b/src/or/nodelist.c
@@ -859,14 +859,6 @@ node_get_by_nickname,(const char *nickname, unsigned flags))
return node_get_by_id(named_id);
}
- /* Is it marked as owned-by-someone-else? */
- if (networkstatus_nickname_is_unnamed(nickname)) {
- log_info(LD_GENERAL, "The name %s is listed as Unnamed: there is some "
- "router that holds it, but not one listed in the current "
- "consensus.", escaped(nickname));
- return NULL;
- }
-
/* Okay, so the name is not canonical for anybody. */
{
smartlist_t *matches = smartlist_new();