aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet/tcp_input.c
diff options
context:
space:
mode:
authorAndre Oppermann <andre@FreeBSD.org>2007-04-20 15:28:01 +0000
committerAndre Oppermann <andre@FreeBSD.org>2007-04-20 15:28:01 +0000
commitdf47e4377bb3ecc5b7ed2b1ef011efe3ca6aeb46 (patch)
tree038867f16b2ace6b644d912b765328e4921de46f /sys/netinet/tcp_input.c
parent7824d002c08da9c2edee4c8f65d3e408686fa2c6 (diff)
downloadsrc-df47e4377bb3ecc5b7ed2b1ef011efe3ca6aeb46.tar.gz
src-df47e4377bb3ecc5b7ed2b1ef011efe3ca6aeb46.zip
Notes
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r--sys/netinet/tcp_input.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c
index 2658d592df4d..3cbc817609ae 100644
--- a/sys/netinet/tcp_input.c
+++ b/sys/netinet/tcp_input.c
@@ -2716,7 +2716,8 @@ tcp_dooptions(struct tcpopt *to, u_char *cp, int cnt, int flags)
case TCPOPT_SIGNATURE:
if (optlen != TCPOLEN_SIGNATURE)
continue;
- to->to_flags |= (TOF_SIGNATURE | TOF_SIGLEN);
+ to->to_flags |= TOF_SIGNATURE;
+ to->to_signature = cp + 2;
break;
#endif
case TCPOPT_SACK_PERMITTED: