Author: gnn
Date: Sun Mar  8 02:47:38 2015
New Revision: 279765
URL: https://svnweb.freebsd.org/changeset/base/279765

Log:
  Summary: Remove the pid printing which does not currently work.

Modified:
  head/share/dtrace/tcpstate

Modified: head/share/dtrace/tcpstate
==============================================================================
--- head/share/dtrace/tcpstate  Sun Mar  8 02:13:46 2015        (r279764)
+++ head/share/dtrace/tcpstate  Sun Mar  8 02:47:38 2015        (r279765)
@@ -41,6 +41,6 @@ tcp:kernel::state-change
 {
        newstate = args[3]->tcps_state;
        oldstate = args[5]->tcps_state;
-       printf("%d %s\t\t%s\n", args[1]->pid, tcp_state_string[oldstate],
+       printf("%s\t\t%s\n", tcp_state_string[oldstate],
                             tcp_state_string[newstate]);
 }
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to