aboutsummaryrefslogtreecommitdiff
path: root/src/or/rendservice.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/or/rendservice.c')
-rw-r--r--src/or/rendservice.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/rendservice.c b/src/or/rendservice.c
index 89b12a35c..06d7a4900 100644
--- a/src/or/rendservice.c
+++ b/src/or/rendservice.c
@@ -3141,7 +3141,7 @@ rend_services_introduce(void)
SMARTLIST_FOREACH(entry->parsed->intro_nodes, rend_intro_point_t *, intro, {
log_info(LD_REND, "Found router %s as an existing intro point for %s.",
- safe_str_client(node_describe(node)),
+ safe_str_client(intro_describe(intro)),
safe_str_client(service->service_id));
int existing = 0;
@@ -3156,7 +3156,7 @@ rend_services_introduce(void)
if (existing == 0) {
log_info(LD_REND, "Also connecting to %s.",
- safe_str_client(node_describe(node)));
+ safe_str_client(intro_describe(intro)));
rend_intro_point_t *new_intro = tor_malloc_zero(sizeof(rend_intro_point_t));
memcpy((void*) new_intro, intro, sizeof(rend_intro_point_t));
@@ -3172,7 +3172,7 @@ rend_services_introduce(void)
intro_point_set_changed = 1;
} else {
log_info(LD_REND, "Already connected to %s, ignoring.",
- safe_str_client(node_describe(node)));
+ safe_str_client(intro_describe(intro)));
}
});