diff options
author | Nick Mathewson <nickm@torproject.org> | 2011-01-24 17:51:52 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-01-24 17:51:52 -0500 |
commit | aaa5737a2e6141bdff13f03051500d2f0ce84861 (patch) | |
tree | 48092b2a74632078dc0163f90969d52952b3758b /src/or/rendservice.c | |
parent | c496229b0a8d90a327674a03aa5be455014b4d5c (diff) | |
parent | 5ed73e3807d90dd0a3a2e5542f98a0a58374a066 (diff) | |
download | tor-aaa5737a2e6141bdff13f03051500d2f0ce84861.tar.gz tor-aaa5737a2e6141bdff13f03051500d2f0ce84861.zip |
Merge remote branch 'origin/maint-0.2.2'
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 c920ecf040..5d65f473dd 100644 --- a/src/or/rendservice.c +++ b/src/or/rendservice.c @@ -1101,7 +1101,7 @@ rend_service_introduce(origin_circuit_t *circuit, const uint8_t *request, } /* Try DH handshake... */ - dh = crypto_dh_new(); + dh = crypto_dh_new(DH_TYPE_REND); if (!dh || crypto_dh_generate_public(dh)<0) { log_warn(LD_BUG,"Internal error: couldn't build DH state " "or generate public key."); |