From 8bd004971b95dbc091f147216f9268ecaebe85c8 Mon Sep 17 00:00:00 2001 From: gnn Date: Sat, 7 Mar 2015 21:28:37 +0000 Subject: [PATCH] Add execute bits to tcpstate script. --- share/dtrace/tcpstate | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/dtrace/tcpstate b/share/dtrace/tcpstate index 4528bd7fe432..0af68aeb25a6 100644 --- 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("%s\t\t%s\n", tcp_state_string[oldstate], + printf("%d %s\t\t%s\n", args[1]->pid, tcp_state_string[oldstate], tcp_state_string[newstate]); }