From: George Kadianakis Date: Mon, 22 Sep 2014 18:14:50 +0000 (+0100) Subject: Scrub from logs the name of the RP we picked. X-Git-Tag: tor-0.2.6.3-alpha~60^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d9968dd0ab146b0d8db348c267c45241fa73bd67;p=thirdparty%2Ftor.git Scrub from logs the name of the RP we picked. --- diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 5de6f3cdfd..38be827870 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -1841,7 +1841,8 @@ choose_good_exit_server(uint8_t purpose, { /* Pick a new RP */ const node_t *rendezvous_node = pick_rendezvous_node(flags); - log_info(LD_REND, "Picked new RP: %s", node_describe(rendezvous_node)); + log_info(LD_REND, "Picked new RP: %s", + safe_str_client(node_describe(rendezvous_node))); return rendezvous_node; } }