summaryrefslogtreecommitdiff
path: root/src/or/hs_client.c
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@torproject.org>2017-08-22 14:12:49 -0400
committerDavid Goulet <dgoulet@torproject.org>2017-08-24 13:03:28 -0400
commitcb462b95b7e864b71ea3dc0a6bfb76c30fb8d378 (patch)
tree7acd858d9e9fa2f1a897dcd610e3330817525c06 /src/or/hs_client.c
parent61009d40d127e0435e9fd98a8daf81c50e6687f0 (diff)
downloadtor-cb462b95b7e864b71ea3dc0a6bfb76c30fb8d378.tar.gz
tor-cb462b95b7e864b71ea3dc0a6bfb76c30fb8d378.zip
prop224: Rename hs_desc_encode_lspec()
Give it a name that shows the transition from a descriptor link spec to a trunnel link spec. Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/or/hs_client.c')
-rw-r--r--src/or/hs_client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/hs_client.c b/src/or/hs_client.c
index 71186b2619..90124fb8e6 100644
--- a/src/or/hs_client.c
+++ b/src/or/hs_client.c
@@ -407,7 +407,7 @@ desc_intro_point_to_extend_info(const hs_desc_intro_point_t *ip)
* representation which is a trunnel object. */
SMARTLIST_FOREACH_BEGIN(ip->link_specifiers,
const hs_desc_link_specifier_t *, desc_lspec) {
- link_specifier_t *lspec = hs_desc_encode_lspec(desc_lspec);
+ link_specifier_t *lspec = hs_desc_lspec_to_trunnel(desc_lspec);
smartlist_add(lspecs, lspec);
} SMARTLIST_FOREACH_END(desc_lspec);