diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-12-06 01:53:29 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-01-03 11:29:47 -0500 |
commit | b2863739083125d332cf1166ae6b095df7d0f155 (patch) | |
tree | 44e6a25866048d143b1e739a46528823306ff9e7 /src/or/circuituse.c | |
parent | ecf88b16b8672c8b734d13d84910e97357c470a8 (diff) | |
download | tor-b2863739083125d332cf1166ae6b095df7d0f155.tar.gz tor-b2863739083125d332cf1166ae6b095df7d0f155.zip |
Enable the ntor handshake on the client side.
"works for me"
Diffstat (limited to 'src/or/circuituse.c')
-rw-r--r-- | src/or/circuituse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/circuituse.c b/src/or/circuituse.c index d3cde1d66c..6a733d6d1a 100644 --- a/src/or/circuituse.c +++ b/src/or/circuituse.c @@ -1577,8 +1577,8 @@ circuit_get_open_circ_or_launch(entry_connection_t *conn, return -1; } extend_info = extend_info_new(conn->chosen_exit_name+1, - digest, NULL, &addr, - conn->socks_request->port); + digest, NULL, NULL, &addr, + conn->socks_request->port); } else { /* We will need an onion key for the router, and we * don't have one. Refuse or relax requirements. */ |