svn commit: r194002 - head/sys/netinet

John Baldwin jhb at FreeBSD.org
Thu Jun 11 14:36:16 UTC 2009


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


More information about the svn-src-all mailing list