From 73450093d0202d12742c6c5e72af9e3b97431224 Mon Sep 17 00:00:00 2001 From: "George V. Neville-Neil" Date: Sun, 8 Mar 2015 02:47:38 +0000 Subject: [PATCH] Summary: Remove the pid printing which does not currently work. --- share/dtrace/tcpstate | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/dtrace/tcpstate b/share/dtrace/tcpstate index 0af68aeb25a..4528bd7fe43 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]); }