summaryrefslogtreecommitdiff
path: root/sys/netinet/tcp_output.c
diff options
context:
space:
mode:
authorAndre Oppermann <andre@FreeBSD.org>2006-09-13 13:08:27 +0000
committerAndre Oppermann <andre@FreeBSD.org>2006-09-13 13:08:27 +0000
commitbf6d304ab2bf82382a2c747da873e8440b50d516 (patch)
treef82f3926dbc563ff12179a5ece6f4860923acd65 /sys/netinet/tcp_output.c
parentbb077f2d54e222826e6394ed3699bb97b77a03b4 (diff)
Notes
Diffstat (limited to 'sys/netinet/tcp_output.c')
-rw-r--r--sys/netinet/tcp_output.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c
index 3479c1da6b5f..986f9566db11 100644
--- a/sys/netinet/tcp_output.c
+++ b/sys/netinet/tcp_output.c
@@ -600,7 +600,7 @@ send:
/* Form timestamp option as shown in appendix A of RFC 1323. */
*lp++ = htonl(TCPOPT_TSTAMP_HDR);
- *lp++ = htonl(ticks);
+ *lp++ = htonl(ticks + tp->ts_offset);
*lp = htonl(tp->ts_recent);
optlen += TCPOLEN_TSTAMP_APPA;
}