diff options
author | Nick Mathewson <nickm@torproject.org> | 2024-06-24 14:15:04 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2024-06-26 11:42:36 -0400 |
commit | 0428aef13a4043d2181b52e62c019d5cb4710283 (patch) | |
tree | c0225ad1ddd257558b4182664cc48c86df961a20 /src/feature/hs | |
parent | 07f0a2b964eedd1ced201f2d1d82ec0089fac371 (diff) | |
download | tor-0428aef13a4043d2181b52e62c019d5cb4710283.tar.gz tor-0428aef13a4043d2181b52e62c019d5cb4710283.zip |
Remove TAP key from extend_info_t
Diffstat (limited to 'src/feature/hs')
-rw-r--r-- | src/feature/hs/hs_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature/hs/hs_common.c b/src/feature/hs/hs_common.c index cd7e4890d1..e16ec89ccb 100644 --- a/src/feature/hs/hs_common.c +++ b/src/feature/hs/hs_common.c @@ -1686,7 +1686,7 @@ hs_get_extend_info_from_lspecs(const smartlist_t *lspecs, /* We do have everything for which we think we can connect successfully. */ info = extend_info_new(NULL, legacy_id, - (have_ed25519_id) ? &ed25519_pk : NULL, NULL, + (have_ed25519_id) ? &ed25519_pk : NULL, onion_key, &ap.addr, ap.port, NULL, false); done: return info; |