aboutsummaryrefslogtreecommitdiff
path: root/src/test/test_hs_intropoint.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2017-09-15 16:43:17 -0400
committerNick Mathewson <nickm@torproject.org>2017-09-15 16:43:17 -0400
commitf4af1919abc0286514051fbbdd97f824879814bb (patch)
tree25947786250dbe9a4c4630d95c1faaf12629e287 /src/test/test_hs_intropoint.c
parent76c33f7ff46df47df0cc880595c4d943d50f019b (diff)
downloadtor-f4af1919abc0286514051fbbdd97f824879814bb.tar.gz
tor-f4af1919abc0286514051fbbdd97f824879814bb.zip
Replace accumulated C ;;s with ;s
I don't know where these came from.
Diffstat (limited to 'src/test/test_hs_intropoint.c')
-rw-r--r--src/test/test_hs_intropoint.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/test/test_hs_intropoint.c b/src/test/test_hs_intropoint.c
index 1e570630c0..0cae2de7e1 100644
--- a/src/test/test_hs_intropoint.c
+++ b/src/test/test_hs_intropoint.c
@@ -170,7 +170,7 @@ test_establish_intro_wrong_purpose(void *arg)
ssize_t cell_len = 0;
char circ_nonce[DIGEST_LEN] = {0};
uint8_t cell_body[RELAY_PAYLOAD_SIZE];
- or_circuit_t *intro_circ = or_circuit_new(0,NULL);;
+ or_circuit_t *intro_circ = or_circuit_new(0,NULL);
(void)arg;
@@ -211,7 +211,7 @@ static void
test_establish_intro_wrong_keytype(void *arg)
{
int retval;
- or_circuit_t *intro_circ = or_circuit_new(0,NULL);;
+ or_circuit_t *intro_circ = or_circuit_new(0,NULL);
char circ_nonce[DIGEST_LEN] = {0};
(void) arg;
@@ -239,7 +239,7 @@ test_establish_intro_wrong_keytype2(void *arg)
char circ_nonce[DIGEST_LEN] = {0};
uint8_t cell_body[RELAY_PAYLOAD_SIZE];
ssize_t cell_len = 0;
- or_circuit_t *intro_circ = or_circuit_new(0,NULL);;
+ or_circuit_t *intro_circ = or_circuit_new(0,NULL);
(void) arg;
@@ -275,7 +275,7 @@ test_establish_intro_wrong_mac(void *arg)
ssize_t cell_len = 0;
uint8_t cell_body[RELAY_PAYLOAD_SIZE];
trn_cell_establish_intro_t *cell = NULL;
- or_circuit_t *intro_circ = or_circuit_new(0,NULL);;
+ or_circuit_t *intro_circ = or_circuit_new(0,NULL);
(void) arg;
@@ -347,7 +347,7 @@ test_establish_intro_wrong_auth_key_len(void *arg)
ssize_t cell_len = 0;
size_t bad_auth_key_len = ED25519_PUBKEY_LEN - 1;
trn_cell_establish_intro_t *cell = NULL;
- or_circuit_t *intro_circ = or_circuit_new(0,NULL);;
+ or_circuit_t *intro_circ = or_circuit_new(0,NULL);
(void) arg;
@@ -392,7 +392,7 @@ test_establish_intro_wrong_sig_len(void *arg)
ssize_t cell_len = 0;
size_t bad_sig_len = ED25519_SIG_LEN - 1;
trn_cell_establish_intro_t *cell = NULL;
- or_circuit_t *intro_circ = or_circuit_new(0,NULL);;
+ or_circuit_t *intro_circ = or_circuit_new(0,NULL);
(void) arg;
@@ -435,7 +435,7 @@ test_establish_intro_wrong_sig(void *arg)
char circ_nonce[DIGEST_LEN] = {0};
uint8_t cell_body[RELAY_PAYLOAD_SIZE];
ssize_t cell_len = 0;
- or_circuit_t *intro_circ = or_circuit_new(0,NULL);;
+ or_circuit_t *intro_circ = or_circuit_new(0,NULL);
(void) arg;
@@ -783,7 +783,7 @@ static void
test_received_introduce1_handling(void *arg)
{
int ret;
- uint8_t *request = NULL, buf[128];;
+ uint8_t *request = NULL, buf[128];
trn_cell_introduce1_t *cell = NULL;
or_circuit_t *circ = NULL;