aboutsummaryrefslogtreecommitdiff
path: root/src/core/or/relay.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2019-05-15 23:20:03 -0400
committerRoger Dingledine <arma@torproject.org>2019-05-15 23:20:03 -0400
commitd86896b29c7a5278bedd89a7150ddbe7531b365b (patch)
treecafa3cb9891674251080b5877f711a0e98a42b51 /src/core/or/relay.c
parent338cfb31798267dc8260415ef55ddceb042367bd (diff)
downloadtor-d86896b29c7a5278bedd89a7150ddbe7531b365b.tar.gz
tor-d86896b29c7a5278bedd89a7150ddbe7531b365b.zip
fix typos, whitespace, comments
Diffstat (limited to 'src/core/or/relay.c')
-rw-r--r--src/core/or/relay.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/or/relay.c b/src/core/or/relay.c
index 8b3a1be18e..066ef19dbf 100644
--- a/src/core/or/relay.c
+++ b/src/core/or/relay.c
@@ -543,7 +543,7 @@ relay_command_to_string(uint8_t command)
STATIC size_t
get_pad_cell_offset(size_t data_len)
{
- /* This is never suppose to happen but in case it does, stop right away
+ /* This is never supposed to happen but in case it does, stop right away
* because if tor is tricked somehow into not adding random bytes to the
* payload with this function returning 0 for a bad data_len, the entire
* authenticated SENDME design can be bypassed leading to bad denial of
@@ -577,7 +577,7 @@ pad_cell_payload(uint8_t *cell_payload, size_t data_len)
}
/* Remember here that the cell_payload is the length of the header and
- * payload size so we offset it using the full lenght of the cell. */
+ * payload size so we offset it using the full length of the cell. */
pad_len = CELL_PAYLOAD_SIZE - pad_offset;
crypto_fast_rng_getbytes(get_thread_fast_rng(),
cell_payload + pad_offset, pad_len);
@@ -1621,7 +1621,7 @@ connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ,
}
}
- /* Tell circpad that we've recieved a recognized cell */
+ /* Tell circpad that we've received a recognized cell */
circpad_deliver_recognized_relay_cell_events(circ, rh.command, layer_hint);
/* either conn is NULL, in which case we've got a control cell, or else