svn commit: r218682 - stable/8/sys/netinet
Bjoern A. Zeeb
bz at FreeBSD.org
Mon Feb 14 16:36:03 UTC 2011
Author: bz
Date: Mon Feb 14 16:36:02 2011
New Revision: 218682
URL: http://svn.freebsd.org/changeset/base/218682
Log:
MFC r218078:
Remove duplicate printing of TF_NOPUSH in db_print_tflags().
Modified:
stable/8/sys/netinet/tcp_usrreq.c
Directory Properties:
stable/8/sys/ (props changed)
stable/8/sys/amd64/include/xen/ (props changed)
stable/8/sys/cddl/contrib/opensolaris/ (props changed)
stable/8/sys/contrib/dev/acpica/ (props changed)
stable/8/sys/contrib/pf/ (props changed)
Modified: stable/8/sys/netinet/tcp_usrreq.c
==============================================================================
--- stable/8/sys/netinet/tcp_usrreq.c Mon Feb 14 15:36:38 2011 (r218681)
+++ stable/8/sys/netinet/tcp_usrreq.c Mon Feb 14 16:36:02 2011 (r218682)
@@ -1695,10 +1695,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-stable-8
mailing list