diff options
author | teor <teor@torproject.org> | 2018-07-25 09:17:17 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2018-07-25 09:17:17 +1000 |
commit | fc4d08e26015e1bb271e8d9219e6f304a5375459 (patch) | |
tree | afd7924d2df666c1eeb802ac289b9beba5e8b053 /src/test/test_hs_cell.c | |
parent | 9ae35975402a823a420cd5efb81a1c3a76f6c4d6 (diff) | |
parent | 3821081a550efc090bb6c583041e1b26a2db72b5 (diff) | |
download | tor-fc4d08e26015e1bb271e8d9219e6f304a5375459.tar.gz tor-fc4d08e26015e1bb271e8d9219e6f304a5375459.zip |
Merge branch 'bug26627_033' into bug26627_033_merged_master
Diffstat (limited to 'src/test/test_hs_cell.c')
-rw-r--r-- | src/test/test_hs_cell.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/test_hs_cell.c b/src/test/test_hs_cell.c index b47929e8eb..5b48dd3785 100644 --- a/src/test/test_hs_cell.c +++ b/src/test/test_hs_cell.c @@ -39,7 +39,7 @@ test_gen_establish_intro_cell(void *arg) attempt to parse it. */ { /* We only need the auth key pair here. */ - hs_service_intro_point_t *ip = service_intro_point_new(NULL, 0); + hs_service_intro_point_t *ip = service_intro_point_new(NULL, 0, 0); /* Auth key pair is generated in the constructor so we are all set for * using this IP object. */ ret = hs_cell_build_establish_intro(circ_nonce, ip, buf); @@ -107,7 +107,7 @@ test_gen_establish_intro_cell_bad(void *arg) ed25519_sign_prefixed() function and make it fail. */ cell = trn_cell_establish_intro_new(); tt_assert(cell); - ip = service_intro_point_new(NULL, 0); + ip = service_intro_point_new(NULL, 0, 0); cell_len = hs_cell_build_establish_intro(circ_nonce, ip, NULL); service_intro_point_free(ip); expect_log_msg_containing("Unable to make signature for " |