diff options
author | George Kadianakis <desnacked@riseup.net> | 2014-09-22 19:14:50 +0100 |
---|---|---|
committer | George Kadianakis <desnacked@riseup.net> | 2014-09-22 19:16:30 +0100 |
commit | d9968dd0ab146b0d8db348c267c45241fa73bd67 (patch) | |
tree | 8126b666e2efb1d6336aadfce4026f3783c3f828 /src/or/circuitbuild.c | |
parent | a77e44d8c07d0fd7f1dc0d3d482616de5b9d8679 (diff) | |
download | tor-d9968dd0ab146b0d8db348c267c45241fa73bd67.tar.gz tor-d9968dd0ab146b0d8db348c267c45241fa73bd67.zip |
Scrub from logs the name of the RP we picked.
Diffstat (limited to 'src/or/circuitbuild.c')
-rw-r--r-- | src/or/circuitbuild.c | 3 |
1 files changed, 2 insertions, 1 deletions
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; } } |