summaryrefslogtreecommitdiffstats
path: root/sys/netinet/tcp_input.c
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2009-06-11 14:36:13 +0000
committerjhb <jhb@FreeBSD.org>2009-06-11 14:36:13 +0000
commit59765b88ce93ed5b02bb6547fd112c4aa948048c (patch)
tree52bd4315a2d41be9df1c7ad29eb71702e4ede107 /sys/netinet/tcp_input.c
parentffdcd121ddeca7a52f425f18a296f020c2508139 (diff)
downloadFreeBSD-src-59765b88ce93ed5b02bb6547fd112c4aa948048c.zip
FreeBSD-src-59765b88ce93ed5b02bb6547fd112c4aa948048c.tar.gz
Trim extra ()'s.
Submitted by: bde
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r--sys/netinet/tcp_input.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c
index e2de669..6bfb723 100644
--- a/sys/netinet/tcp_input.c
+++ b/sys/netinet/tcp_input.c
@@ -1778,7 +1778,7 @@ tcp_do_segment(struct mbuf *m, struct tcphdr *th, struct socket *so,
TSTMP_LT(to.to_tsval, tp->ts_recent)) {
/* Check to see if ts_recent is over 24 days old. */
- if ((ticks - tp->ts_recent_age) > TCP_PAWS_IDLE) {
+ if (ticks - tp->ts_recent_age > TCP_PAWS_IDLE) {
/*
* Invalidate ts_recent. If this segment updates
* ts_recent, the age will be reset later and ts_recent
OpenPOWER on IntegriCloud