From 7f79e7e4db7dad4d614f5c39b13cbc45f440f82e Mon Sep 17 00:00:00 2001 From: "Bjoern A. Zeeb" Date: Sat, 29 Jan 2011 22:11:13 +0000 Subject: [PATCH] Remove duplicate printing of TF_NOPUSH in db_print_tflags(). MFC after: 10 days --- sys/netinet/tcp_usrreq.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/sys/netinet/tcp_usrreq.c b/sys/netinet/tcp_usrreq.c index 4a7ceff67c38..b2fce82d6297 100644 --- a/sys/netinet/tcp_usrreq.c +++ b/sys/netinet/tcp_usrreq.c @@ -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;