svn commit: r218703 - stable/7/sys/netinet

Bjoern A. Zeeb bz at FreeBSD.org
Tue Feb 15 09:28:08 UTC 2011


Author: bz
Date: Tue Feb 15 09:28:07 2011
New Revision: 218703
URL: http://svn.freebsd.org/changeset/base/218703

Log:
  MFC r218078:
  
    Remove duplicate printing of TF_NOPUSH in db_print_tflags().

Modified:
  stable/7/sys/netinet/tcp_usrreq.c
Directory Properties:
  stable/7/sys/   (props changed)
  stable/7/sys/cddl/contrib/opensolaris/   (props changed)
  stable/7/sys/contrib/dev/acpica/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)

Modified: stable/7/sys/netinet/tcp_usrreq.c
==============================================================================
--- stable/7/sys/netinet/tcp_usrreq.c	Tue Feb 15 09:17:51 2011	(r218702)
+++ stable/7/sys/netinet/tcp_usrreq.c	Tue Feb 15 09:28:07 2011	(r218703)
@@ -1679,10 +1679,6 @@ db_print_tflags(u_int t_flags)
 		db_printf("%sTF_NOPUSH", comma ? ", " : "");
 		comma = 1;
 	}
-	if (t_flags & TF_NOPUSH) {
-		db_printf("%sTF_NOPUSH", comma ? ", " : "");
-		comma = 1;
-	}
 	if (t_flags & TF_MORETOCOME) {
 		db_printf("%sTF_MORETOCOME", comma ? ", " : "");
 		comma = 1;


More information about the svn-src-all mailing list