diff options
author | Mike Perry <mikeperry-git@torproject.org> | 2021-11-04 19:57:57 +0000 |
---|---|---|
committer | Mike Perry <mikeperry-git@torproject.org> | 2022-02-22 19:28:34 +0000 |
commit | 812590f8aa6637cd2b3f869dc4e30fd6550beac3 (patch) | |
tree | a32daa3d4ca626a43b364d12a9ab658eae5b6ae7 /src/feature/hs/hs_service.c | |
parent | a07e008616e3bc00451cb28017750e4dc0bc9ca2 (diff) | |
download | tor-812590f8aa6637cd2b3f869dc4e30fd6550beac3.tar.gz tor-812590f8aa6637cd2b3f869dc4e30fd6550beac3.zip |
Extend info argument updates for non-ntorv3 cases
Diffstat (limited to 'src/feature/hs/hs_service.c')
-rw-r--r-- | src/feature/hs/hs_service.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature/hs/hs_service.c b/src/feature/hs/hs_service.c index 9b7b590140..2b3699422a 100644 --- a/src/feature/hs/hs_service.c +++ b/src/feature/hs/hs_service.c @@ -714,7 +714,7 @@ get_extend_info_from_intro_point(const hs_service_intro_point_t *ip, /* In the case of a direct connection (single onion service), it is possible * our firewall policy won't allow it so this can return a NULL value. */ - info = extend_info_from_node(node, direct_conn); + info = extend_info_from_node(node, direct_conn, false); end: return info; |