diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-05-22 11:50:46 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-05-22 11:50:46 -0400 |
commit | 24c2502070b695c047fa7ebd87ac436a98e0bb51 (patch) | |
tree | 40237c33aa442a2e4e22960096f9a4b0c915f618 /src/test/test_hs_cell.c | |
parent | e6b862e6a8bf690571f192efc66f06ed5cb4696d (diff) | |
parent | 245dccb77d79dc432bb7aab21ce2c893da4b602a (diff) | |
download | tor-24c2502070b695c047fa7ebd87ac436a98e0bb51.tar.gz tor-24c2502070b695c047fa7ebd87ac436a98e0bb51.zip |
Merge remote-tracking branch 'dgoulet/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 6e00e8807e..cdcbe23e69 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 */ |