Add execute bits to tcpstate script.

This commit is contained in:
gnn 2015-03-07 21:28:37 +00:00
parent 4982c87ae2
commit 8bd004971b

View File

@ -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]);
}