aboutsummaryrefslogtreecommitdiff
path: root/src/core/or/crypt_path.c
diff options
context:
space:
mode:
authorGeorge Kadianakis <desnacked@riseup.net>2019-04-08 16:36:12 +0300
committerGeorge Kadianakis <desnacked@riseup.net>2019-05-03 18:15:26 +0300
commit593b7726e98fd68cccadb3da219d9f31692e8c80 (patch)
treeb101c1ebac5c9d9ed9f132a85b50729a92990725 /src/core/or/crypt_path.c
parentcd38e41620120a11a70ebe059f3adbaa05e4c1ff (diff)
downloadtor-593b7726e98fd68cccadb3da219d9f31692e8c80.tar.gz
tor-593b7726e98fd68cccadb3da219d9f31692e8c80.zip
Hiding crypt_path_t: Trivial changes to satisfy check-local.
Diffstat (limited to 'src/core/or/crypt_path.c')
-rw-r--r--src/core/or/crypt_path.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/or/crypt_path.c b/src/core/or/crypt_path.c
index e24712ed89..ea07ec495f 100644
--- a/src/core/or/crypt_path.c
+++ b/src/core/or/crypt_path.c
@@ -154,11 +154,10 @@ circuit_init_cpath_crypto(crypt_path_t *cpath,
tor_assert(cpath);
tor_assert(cpath->private);
- return relay_crypto_init(&cpath->private->crypto, key_data, key_data_len, reverse,
- is_hs_v3);
+ return relay_crypto_init(&cpath->private->crypto, key_data, key_data_len,
+ reverse, is_hs_v3);
}
-
/** Deallocate space associated with the cpath node <b>victim</b>. */
void
circuit_free_cpath_node(crypt_path_t *victim)