aboutsummaryrefslogtreecommitdiff
path: root/src/or/buffers.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2011-10-11 11:30:01 -0400
committerNick Mathewson <nickm@torproject.org>2011-10-11 11:30:01 -0400
commit69921837a743d551576b3b157657623a0bb96308 (patch)
tree2280953a09d763ec3359107d0da96d55ef90fbf7 /src/or/buffers.c
parent3b704fd16667007d49223e1ae555eb7bd03092b3 (diff)
downloadtor-69921837a743d551576b3b157657623a0bb96308.tar
tor-69921837a743d551576b3b157657623a0bb96308.tar.gz
Fix a bunch of whitespace errors
Diffstat (limited to 'src/or/buffers.c')
-rw-r--r--src/or/buffers.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/or/buffers.c b/src/or/buffers.c
index c589fbaef..f4aac0f0e 100644
--- a/src/or/buffers.c
+++ b/src/or/buffers.c
@@ -1005,14 +1005,15 @@ fetch_from_buf(char *string, size_t string_len, buf_t *buf)
return (int)buf->datalen;
}
-/** True iff the cell command <b>command</b> is one that implies a variable-length
- * cell in Tor link protocol <b>linkproto</b>. */
+/** True iff the cell command <b>command</b> is one that implies a
+ * variable-length cell in Tor link protocol <b>linkproto</b>. */
static inline int
cell_command_is_var_length(uint8_t command, int linkproto)
{
- /* If linkproto is v2 (2), CELL_VERSIONS is the only variable-length cells work as
- * implemented here. If it's 1, there are no variable-length cells. Tor
- * does not support other versions right now, and so can't negotiate them.
+ /* If linkproto is v2 (2), CELL_VERSIONS is the only variable-length cells
+ * work as implemented here. If it's 1, there are no variable-length cells.
+ * Tor does not support other versions right now, and so can't negotiate
+ * them.
*/
switch (linkproto) {
case 1: