diff options
author | David Goulet <dgoulet@torproject.org> | 2019-05-22 11:43:55 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2019-05-22 11:43:55 -0400 |
commit | 245dccb77d79dc432bb7aab21ce2c893da4b602a (patch) | |
tree | 5cfbd50a097ac52c82fe507082de1d885929bd5f /src/test/test_hs_cell.c | |
parent | e5deb2bbc73d8830ae6c479a4532e72112f5484a (diff) | |
parent | 56908c6f1c63d32bef7011c811976e24156f17d3 (diff) | |
download | tor-245dccb77d79dc432bb7aab21ce2c893da4b602a.tar.gz tor-245dccb77d79dc432bb7aab21ce2c893da4b602a.zip |
Merge remote-tracking branch 'nickm/ticket30454_034_01_squashed' into ticket30454_035_01
Diffstat (limited to 'src/test/test_hs_cell.c')
-rw-r--r-- | src/test/test_hs_cell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test_hs_cell.c b/src/test/test_hs_cell.c index 0c93f593ce..f8af631c8b 100644 --- a/src/test/test_hs_cell.c +++ b/src/test/test_hs_cell.c @@ -50,7 +50,7 @@ test_gen_establish_intro_cell(void *arg) /* Check the contents of the cell */ { /* First byte is the auth key type: make sure its correct */ - tt_int_op(buf[0], OP_EQ, HS_INTRO_AUTH_KEY_TYPE_ED25519); + tt_int_op(buf[0], OP_EQ, TRUNNEL_HS_INTRO_AUTH_KEY_TYPE_ED25519); /* Next two bytes is auth key len */ tt_int_op(ntohs(get_uint16(buf+1)), OP_EQ, ED25519_PUBKEY_LEN); /* Skip to the number of extensions: no extensions */ |