diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index e01a6f0778c..9508abc3538 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1115,7 +1115,7 @@ after_listen: * was established. */ if ((to.to_flags & TOF_TS) && (to.to_tsecr != 0)) { - to.to_tsecr =- tp->ts_offset; + to.to_tsecr -= tp->ts_offset; if (TSTMP_GT(to.to_tsecr, ticks)) to.to_tsecr = 0; } diff --git a/sys/netinet/tcp_reass.c b/sys/netinet/tcp_reass.c index e01a6f0778c..9508abc3538 100644 --- a/sys/netinet/tcp_reass.c +++ b/sys/netinet/tcp_reass.c @@ -1115,7 +1115,7 @@ after_listen: * was established. */ if ((to.to_flags & TOF_TS) && (to.to_tsecr != 0)) { - to.to_tsecr =- tp->ts_offset; + to.to_tsecr -= tp->ts_offset; if (TSTMP_GT(to.to_tsecr, ticks)) to.to_tsecr = 0; }