diff options
author | Roger Dingledine <arma@torproject.org> | 2006-12-07 20:14:29 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-12-07 20:14:29 +0000 |
commit | 566543a4f87b41ead10155964884e1b42992e3c1 (patch) | |
tree | 460ffd7e4f6b9edf99f02dedb73d26f9a86ce1f8 /src/or/rendservice.c | |
parent | b4a90ca8a3e0a29afc2f2068cdfd02044e242965 (diff) | |
download | tor-566543a4f87b41ead10155964884e1b42992e3c1.tar.gz tor-566543a4f87b41ead10155964884e1b42992e3c1.zip |
more changes on r9041
svn:r9049
Diffstat (limited to 'src/or/rendservice.c')
-rw-r--r-- | src/or/rendservice.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/or/rendservice.c b/src/or/rendservice.c index d60c69770e..cf9be7a437 100644 --- a/src/or/rendservice.c +++ b/src/or/rendservice.c @@ -590,15 +590,15 @@ rend_service_introduce(origin_circuit_t *circuit, const char *request, } if (!launched) { /* give up */ log_warn(LD_REND, "Giving up launching first hop of circuit to rendezvous " - "point '%s' for service %s.", + "point %s for service %s.", escaped_safe_str(extend_info->nickname), serviceid); reason = END_CIRC_REASON_CONNECTFAILED; goto err; } log_info(LD_REND, - "Accepted intro; launching circuit to '%s' " + "Accepted intro; launching circuit to %s " "(cookie %s) for service %s.", - extend_info->nickname, hexcookie, serviceid); + escaped_safe_str(extend_info->nickname), hexcookie, serviceid); tor_assert(launched->build_state); /* Fill in the circuit's state. */ memcpy(launched->rend_pk_digest, circuit->rend_pk_digest, @@ -693,7 +693,7 @@ rend_service_launch_establish_intro(rend_service_t *service, log_info(LD_REND, "Launching circuit to introduction point %s for service %s", - nickname, service->service_id); + escaped_safe_str(nickname), service->service_id); rep_hist_note_used_internal(time(NULL), 1, 0); @@ -702,8 +702,8 @@ rend_service_launch_establish_intro(rend_service_t *service, nickname, 1, 0, 1); if (!launched) { log_info(LD_REND, - "Can't launch circuit to establish introduction at '%s'.", - nickname); + "Can't launch circuit to establish introduction at %s.", + escaped_safe_str(nickname)); return -1; } strlcpy(launched->rend_query, service->service_id, |