diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2008-06-28 13:26:39 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2008-06-28 13:26:39 +0000 |
commit | df8bde6eb27a5c1ec421df9f0bad9aa15ae638c8 (patch) | |
tree | 0325c46a5ddb8913ee643fcc009c2196ab289a47 /sys/netinet/tcp_output.c | |
parent | 59484db2af90db8a5dee2c33b78ec789415bc9ec (diff) |
no EOL between tcpsig and sack headers; ok jsing, frantzen
Diffstat (limited to 'sys/netinet/tcp_output.c')
-rw-r--r-- | sys/netinet/tcp_output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c index 2e4480cdbb9..53ec8ad07e6 100644 --- a/sys/netinet/tcp_output.c +++ b/sys/netinet/tcp_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_output.c,v 1.83 2008/06/12 15:13:47 jsing Exp $ */ +/* $OpenBSD: tcp_output.c,v 1.84 2008/06/28 13:26:38 markus Exp $ */ /* $NetBSD: tcp_output.c,v 1.16 1997/06/03 16:17:09 kml Exp $ */ /* @@ -615,7 +615,7 @@ send: * terminate it. */ *bp++ = TCPOPT_NOP; - *bp++ = TCPOPT_EOL; + *bp++ = TCPOPT_NOP; optlen += TCPOLEN_SIGLEN; } |