diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-12-17 17:20:36 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-12-17 17:20:36 +0000 |
commit | fc5e686b197b350b0e5eab7e7f355a226125d834 (patch) | |
tree | 2bf817984b7f1dacafd27e89408654067cec6ab2 | |
parent | 1beb1c113b649b593292bd0ad386d3ecc4447309 (diff) | |
download | tor-fc5e686b197b350b0e5eab7e7f355a226125d834.tar.gz tor-fc5e686b197b350b0e5eab7e7f355a226125d834.zip |
Whitespace fix.
svn:r17650
-rw-r--r-- | src/or/relay.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/or/relay.c b/src/or/relay.c index 4ebfc12cbb..341f71f3de 100644 --- a/src/or/relay.c +++ b/src/or/relay.c @@ -16,8 +16,9 @@ const char relay_c_id[] = #include "or.h" #include "mempool.h" -static int relay_crypt(circuit_t *circ, cell_t *cell, cell_direction_t cell_direction, - crypt_path_t **layer_hint, char *recognized); +static int relay_crypt(circuit_t *circ, cell_t *cell, + cell_direction_t cell_direction, + crypt_path_t **layer_hint, char *recognized); static edge_connection_t *relay_lookup_conn(circuit_t *circ, cell_t *cell, cell_direction_t cell_direction, crypt_path_t *layer_hint); @@ -380,8 +381,8 @@ circuit_package_relay_cell(cell_t *cell, circuit_t *circ, * attached to circ, return that conn, else return NULL. */ static edge_connection_t * -relay_lookup_conn(circuit_t *circ, cell_t *cell, cell_direction_t cell_direction, - crypt_path_t *layer_hint) +relay_lookup_conn(circuit_t *circ, cell_t *cell, + cell_direction_t cell_direction, crypt_path_t *layer_hint) { edge_connection_t *tmpconn; relay_header_t rh; |