diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-04-05 20:53:50 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-04-05 20:53:50 +0000 |
commit | 04e8dc90262d9ccc5ef6932cfe86feac24fde997 (patch) | |
tree | 7f40aa771e57b35abfb4d9e6745cb18c34846899 /src/or/rendservice.c | |
parent | b1a8b208ca9a3fe4c1de1e5e53c32b147937b8f7 (diff) | |
download | tor-04e8dc90262d9ccc5ef6932cfe86feac24fde997.tar.gz tor-04e8dc90262d9ccc5ef6932cfe86feac24fde997.zip |
Implement response to RENDEZVOUS2 cell.
svn:r1490
Diffstat (limited to 'src/or/rendservice.c')
-rw-r--r-- | src/or/rendservice.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/rendservice.c b/src/or/rendservice.c index b4898a3f50..b865d01e9e 100644 --- a/src/or/rendservice.c +++ b/src/or/rendservice.c @@ -414,7 +414,7 @@ rend_service_introduce(circuit_t *circuit, const char *request, int request_len) cpath->handshake_state = dh; dh = NULL; - if (circuit_init_cpath_crypto(cpath,keys+20)<0) + if (circuit_init_cpath_crypto(cpath,keys+20,1)<0) goto err; memcpy(cpath->handshake_digest, keys, 20); |