diff options
author | Nick Mathewson <nickm@torproject.org> | 2011-10-11 11:30:01 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-10-11 11:30:01 -0400 |
commit | 69921837a743d551576b3b157657623a0bb96308 (patch) | |
tree | 2280953a09d763ec3359107d0da96d55ef90fbf7 /src/or/buffers.c | |
parent | 3b704fd16667007d49223e1ae555eb7bd03092b3 (diff) | |
download | tor-69921837a743d551576b3b157657623a0bb96308.tar.gz tor-69921837a743d551576b3b157657623a0bb96308.zip |
Fix a bunch of whitespace errors
Diffstat (limited to 'src/or/buffers.c')
-rw-r--r-- | src/or/buffers.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/or/buffers.c b/src/or/buffers.c index c589fbaefa..f4aac0f0e4 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: |