diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-01-13 16:35:35 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-01-13 16:35:35 -0500 |
commit | ac75c33991ac3ba4180d7a20971f35482da2d425 (patch) | |
tree | 2ea5c15df6f751d38aa20c8bb3220f7cb2689acf /src/test/test_hs_intropoint.c | |
parent | dafdbc2e9f65d068354f43222296223a4e063155 (diff) | |
download | tor-ac75c33991ac3ba4180d7a20971f35482da2d425.tar.gz tor-ac75c33991ac3ba4180d7a20971f35482da2d425.zip |
fix wide lines
Diffstat (limited to 'src/test/test_hs_intropoint.c')
-rw-r--r-- | src/test/test_hs_intropoint.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/test_hs_intropoint.c b/src/test/test_hs_intropoint.c index b4a81eaacd..dbd884cf3b 100644 --- a/src/test/test_hs_intropoint.c +++ b/src/test/test_hs_intropoint.c @@ -165,7 +165,7 @@ test_establish_intro_wrong_mac(void *arg) /* Create outgoing ESTABLISH_INTRO cell and extract its payload so that we attempt to parse it. */ establish_intro_cell = generate_establish_intro_cell(circuit_key_material, - sizeof(circuit_key_material)); + sizeof(circuit_key_material)); tt_assert(establish_intro_cell); /* Mangle one byte of the MAC. */ uint8_t *handshake_ptr = @@ -236,7 +236,7 @@ test_establish_intro_wrong_auth_key_len(void *arg) /* Create outgoing ESTABLISH_INTRO cell and extract its payload so that we attempt to parse it. */ establish_intro_cell = generate_establish_intro_cell(circuit_key_material, - sizeof(circuit_key_material)); + sizeof(circuit_key_material)); tt_assert(establish_intro_cell); /* Mangle the auth key length. */ hs_cell_establish_intro_set_auth_key_len(establish_intro_cell, @@ -281,7 +281,7 @@ test_establish_intro_wrong_sig_len(void *arg) /* Create outgoing ESTABLISH_INTRO cell and extract its payload so that we attempt to parse it. */ establish_intro_cell = generate_establish_intro_cell(circuit_key_material, - sizeof(circuit_key_material)); + sizeof(circuit_key_material)); tt_assert(establish_intro_cell); /* Mangle the signature length. */ hs_cell_establish_intro_set_sig_len(establish_intro_cell, bad_sig_len); |