aboutsummaryrefslogtreecommitdiff
path: root/src/or/rendclient.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/or/rendclient.c')
-rw-r--r--src/or/rendclient.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/or/rendclient.c b/src/or/rendclient.c
index 848b02d3a0..5c5c48afbd 100644
--- a/src/or/rendclient.c
+++ b/src/or/rendclient.c
@@ -755,7 +755,11 @@ rend_client_get_random_intro(const rend_data_t *rend_query)
intro = smartlist_get(entry->parsed->intro_nodes, i);
/* Do we need to look up the router or is the extend info complete? */
if (!intro->extend_info->onion_key) {
- const node_t *node = node_get_by_nickname(intro->extend_info->nickname, 0);
+ const node_t *node;
+ if (tor_digest_is_zero(intro->extend_info->identity_digest))
+ node = node_get_by_hex_id(intro->extend_info->nickname);
+ else
+ node = node_get_by_id(intro->extend_info->identity_digest);
if (!node) {
log_info(LD_REND, "Unknown router with nickname '%s'; trying another.",
intro->extend_info->nickname);