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;
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"

Reply via email to