aboutsummaryrefslogtreecommitdiff
path: root/src/or/connection_edge.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2004-04-01 03:44:49 +0000
committerRoger Dingledine <arma@torproject.org>2004-04-01 03:44:49 +0000
commitcc3c4245cb80cb7bb98be4868f053fb9421176d3 (patch)
tree5893239bebad7b637548ece00a9484214c17087d /src/or/connection_edge.c
parent9feb44d3c45ebeb6bb42ef98adabf68c20695c73 (diff)
downloadtor-cc3c4245cb80cb7bb98be4868f053fb9421176d3.tar
tor-cc3c4245cb80cb7bb98be4868f053fb9421176d3.tar.gz
let the circuit-launcher choose the exit node (if he wants)
svn:r1428
Diffstat (limited to 'src/or/connection_edge.c')
-rw-r--r--src/or/connection_edge.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c
index 08c009bd9..7352c584b 100644
--- a/src/or/connection_edge.c
+++ b/src/or/connection_edge.c
@@ -758,7 +758,7 @@ static int connection_ap_handshake_attach_circuit(connection_t *conn,
case 0: /* no useful circuits available */
if(!circuit_get_newest(conn, 0, must_be_clean)) {
/* is one already on the way? */
- circuit_launch_new(CIRCUIT_PURPOSE_C_GENERAL);
+ circuit_launch_new(CIRCUIT_PURPOSE_C_GENERAL, NULL);
}
return 0;
default: /* case 1, it succeeded, great */