aboutsummaryrefslogtreecommitdiff
path: root/share/dtrace
diff options
context:
space:
mode:
authorGeorge V. Neville-Neil <gnn@FreeBSD.org>2015-03-08 02:47:38 +0000
committerGeorge V. Neville-Neil <gnn@FreeBSD.org>2015-03-08 02:47:38 +0000
commit73450093d0202d12742c6c5e72af9e3b97431224 (patch)
tree5931a1dda0823887ece8b729affc165afd65246c /share/dtrace
parent79d7993d98d4fbc2e47b3271050da99fce3df0ae (diff)
Notes
Diffstat (limited to 'share/dtrace')
-rwxr-xr-xshare/dtrace/tcpstate2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/dtrace/tcpstate b/share/dtrace/tcpstate
index 0af68aeb25a6..4528bd7fe432 100755
--- a/share/dtrace/tcpstate
+++ b/share/dtrace/tcpstate
@@ -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]);
}