svn commit: r218078 - head/sys/netinet
Bjoern A. Zeeb
bz at FreeBSD.org
Sat Jan 29 22:11:13 UTC 2011
Author: bz
Date: Sat Jan 29 22:11:13 2011
New Revision: 218078
URL: http://svn.freebsd.org/changeset/base/218078
Log:
Remove duplicate printing of TF_NOPUSH in db_print_tflags().
MFC after: 10 days
Modified:
head/sys/netinet/tcp_usrreq.c
Modified: head/sys/netinet/tcp_usrreq.c
==============================================================================
--- head/sys/netinet/tcp_usrreq.c Sat Jan 29 21:14:29 2011 (r218077)
+++ head/sys/netinet/tcp_usrreq.c Sat Jan 29 22:11:13 2011 (r218078)
@@ -1742,10 +1742,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-head
mailing list