diff options
author | teor <teor@torproject.org> | 2019-03-08 16:47:20 +1000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-03-12 11:09:53 -0400 |
commit | 680b2afd84a318e11f79526bfedff29870307ed0 (patch) | |
tree | ab96ab5c76c74d4354dd8e1d9068d7e981d11c6f /src/feature/hs/hs_cell.c | |
parent | 257cea8876e00b18c6791f86ebe5c24bab3b72bf (diff) | |
download | tor-680b2afd84a318e11f79526bfedff29870307ed0.tar.gz tor-680b2afd84a318e11f79526bfedff29870307ed0.zip |
hs: abolish hs_desc_link_specifier_dup()
The previous commits introduced link_specifier_dup(), which is
implemented using trunnel's opaque interfaces. So we can now
remove hs_desc_link_specifier_dup().
Cleanup after bug 22781.
Diffstat (limited to 'src/feature/hs/hs_cell.c')
-rw-r--r-- | src/feature/hs/hs_cell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature/hs/hs_cell.c b/src/feature/hs/hs_cell.c index e24520da47..1dae9c79c1 100644 --- a/src/feature/hs/hs_cell.c +++ b/src/feature/hs/hs_cell.c @@ -759,7 +759,7 @@ hs_cell_parse_introduce2(hs_cell_introduce2_data_t *data, if (BUG(!lspec)) { goto done; } - link_specifier_t *lspec_dup = hs_link_specifier_dup(lspec); + link_specifier_t *lspec_dup = link_specifier_dup(lspec); if (BUG(!lspec_dup)) { goto done; } |