Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 11 Jun 2009 14:36:14 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r194002 - head/sys/netinet
Message-ID:  <200906111436.n5BEaEgN050248@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhb
Date: Thu Jun 11 14:36:13 2009
New Revision: 194002
URL: http://svn.freebsd.org/changeset/base/194002

Log:
  Trim extra ()'s.
  
  Submitted by:	bde

Modified:
  head/sys/netinet/tcp_input.c

Modified: head/sys/netinet/tcp_input.c
==============================================================================
--- head/sys/netinet/tcp_input.c	Thu Jun 11 14:18:33 2009	(r194001)
+++ head/sys/netinet/tcp_input.c	Thu Jun 11 14:36:13 2009	(r194002)
@@ -1778,7 +1778,7 @@ tcp_do_segment(struct mbuf *m, struct tc
 	    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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200906111436.n5BEaEgN050248>