[or-cvs] r9049: more changes on r9041 (tor/trunk/src/or)
arma at seul.org
arma at seul.org
Thu Dec 7 20:14:29 UTC 2006
Author: arma
Date: 2006-12-07 15:14:29 -0500 (Thu, 07 Dec 2006)
New Revision: 9049
Modified:
tor/trunk/src/or/rendservice.c
Log:
more changes on r9041
Modified: tor/trunk/src/or/rendservice.c
===================================================================
--- tor/trunk/src/or/rendservice.c 2006-12-07 20:11:36 UTC (rev 9048)
+++ tor/trunk/src/or/rendservice.c 2006-12-07 20:14:29 UTC (rev 9049)
@@ -590,15 +590,15 @@
}
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 @@
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 @@
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,
More information about the tor-commits
mailing list