aboutsummaryrefslogtreecommitdiff
path: root/src/test/test_hs_intropoint.c
diff options
context:
space:
mode:
authorteor <teor@torproject.org>2018-07-25 09:17:17 +1000
committerteor <teor@torproject.org>2018-07-25 09:17:17 +1000
commitfc4d08e26015e1bb271e8d9219e6f304a5375459 (patch)
treeafd7924d2df666c1eeb802ac289b9beba5e8b053 /src/test/test_hs_intropoint.c
parent9ae35975402a823a420cd5efb81a1c3a76f6c4d6 (diff)
parent3821081a550efc090bb6c583041e1b26a2db72b5 (diff)
downloadtor-fc4d08e26015e1bb271e8d9219e6f304a5375459.tar.gz
tor-fc4d08e26015e1bb271e8d9219e6f304a5375459.zip
Merge branch 'bug26627_033' into bug26627_033_merged_master
Diffstat (limited to 'src/test/test_hs_intropoint.c')
-rw-r--r--src/test/test_hs_intropoint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/test_hs_intropoint.c b/src/test/test_hs_intropoint.c
index 7da376471b..628d99bfde 100644
--- a/src/test/test_hs_intropoint.c
+++ b/src/test/test_hs_intropoint.c
@@ -50,7 +50,7 @@ new_establish_intro_cell(const char *circ_nonce,
/* Auth key pair is generated in the constructor so we are all set for
* using this IP object. */
- ip = service_intro_point_new(NULL, 0);
+ ip = service_intro_point_new(NULL, 0, 0);
tt_assert(ip);
cell_len = hs_cell_build_establish_intro(circ_nonce, ip, buf);
tt_i64_op(cell_len, OP_GT, 0);
@@ -76,7 +76,7 @@ new_establish_intro_encoded_cell(const char *circ_nonce, uint8_t *cell_out)
/* Auth key pair is generated in the constructor so we are all set for
* using this IP object. */
- ip = service_intro_point_new(NULL, 0);
+ ip = service_intro_point_new(NULL, 0, 0);
tt_assert(ip);
cell_len = hs_cell_build_establish_intro(circ_nonce, ip, cell_out);
tt_i64_op(cell_len, OP_GT, 0);