diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-09-12 11:10:48 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-09-12 11:10:48 -0400 |
commit | 6c5c74e11e63f8e1a924ac8de4784edaf56179fa (patch) | |
tree | 35068ed320d65085a9a6369edd0d0ccf97d8ffa5 /src/or/hs_client.c | |
parent | 26d462c1f0d4dd7ebd7f3f24c49a26e62e279b93 (diff) | |
parent | 7150214baf2385d0e64fd11fe4138932675d444f (diff) | |
download | tor-6c5c74e11e63f8e1a924ac8de4784edaf56179fa.tar.gz tor-6c5c74e11e63f8e1a924ac8de4784edaf56179fa.zip |
Merge remote-tracking branch 'asn/bug23457_032_01'
Diffstat (limited to 'src/or/hs_client.c')
-rw-r--r-- | src/or/hs_client.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/hs_client.c b/src/or/hs_client.c index cde0231d9d..620ef3a100 100644 --- a/src/or/hs_client.c +++ b/src/or/hs_client.c @@ -156,7 +156,8 @@ directory_launch_v3_desc_fetch(const ed25519_public_key_t *onion_identity_pk, } /* Copy onion pk to a dir_ident so that we attach it to the dir conn */ - ed25519_pubkey_copy(&hs_conn_dir_ident.identity_pk, onion_identity_pk); + hs_ident_dir_conn_init(onion_identity_pk, &blinded_pubkey, + &hs_conn_dir_ident); /* Setup directory request */ directory_request_t *req = |