diff options
| author | Bruce M Simpson <bms@FreeBSD.org> | 2004-02-12 20:12:48 +0000 |
|---|---|---|
| committer | Bruce M Simpson <bms@FreeBSD.org> | 2004-02-12 20:12:48 +0000 |
| commit | bca0e5bfc3a3252690b2ee86c8a2caf08d9dc208 (patch) | |
| tree | 7039b1405bb5986dc2a67d307e77f54287939efd /sys/netinet/tcp_output.c | |
| parent | a0194ef1eaa8629964776949b8e0b88b8de1dfb4 (diff) | |
Notes
Diffstat (limited to 'sys/netinet/tcp_output.c')
| -rw-r--r-- | sys/netinet/tcp_output.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c index 2e386d072c03..64c7fa676e95 100644 --- a/sys/netinet/tcp_output.c +++ b/sys/netinet/tcp_output.c @@ -548,9 +548,8 @@ send: if (tp->t_flags & TF_SIGNATURE) { int i; u_char *bp; - /* - * Initialize TCP-MD5 option (RFC2385) - */ + + /* Initialize TCP-MD5 option (RFC2385) */ bp = (u_char *)opt + optlen; *bp++ = TCPOPT_SIGNATURE; *bp++ = TCPOLEN_SIGNATURE; @@ -558,9 +557,8 @@ send: for (i = 0; i < TCP_SIGLEN; i++) *bp++ = 0; optlen += TCPOLEN_SIGNATURE; - /* - * Terminate options list and maintain 32-bit alignment. - */ + + /* Terminate options list and maintain 32-bit alignment. */ *bp++ = TCPOPT_NOP; *bp++ = TCPOPT_EOL; optlen += 2; |
