diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-12-14 15:41:08 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-12-14 15:41:08 -0500 |
commit | 81360c4a5fde6d66a81c506af657df77d2e63cff (patch) | |
tree | f7bc6843a6f8ff953732dd9bb906a4de992dbd25 /src/or/hs_service.c | |
parent | a675ef8eeabcd6c2ab05cfadc59a95de578be380 (diff) | |
download | tor-81360c4a5fde6d66a81c506af657df77d2e63cff.tar.gz tor-81360c4a5fde6d66a81c506af657df77d2e63cff.zip |
whitespace fixes
Diffstat (limited to 'src/or/hs_service.c')
-rw-r--r-- | src/or/hs_service.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/or/hs_service.c b/src/or/hs_service.c index 6f0836ca2e..3b5a3e7853 100644 --- a/src/or/hs_service.c +++ b/src/or/hs_service.c @@ -126,7 +126,8 @@ generate_establish_intro_cell(const uint8_t *circuit_key_material, crypto_mac_sha3_256(mac, sizeof(mac), circuit_key_material, circuit_key_material_len, cell_bytes_tmp, - encoded_len - (ED25519_SIG_LEN + 2 + TRUNNEL_SHA3_256_LEN)); + encoded_len - + (ED25519_SIG_LEN + 2 + TRUNNEL_SHA3_256_LEN)); /* Write the MAC to the cell */ uint8_t *handshake_ptr = hs_cell_establish_intro_getarray_handshake_mac(cell); @@ -173,3 +174,4 @@ generate_establish_intro_cell(const uint8_t *circuit_key_material, } #endif /* TOR_UNIT_TESTS */ + |