diff options
Diffstat (limited to 'usr.bin')
| -rw-r--r-- | usr.bin/sockstat/sockstat.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/sockstat/sockstat.pl b/usr.bin/sockstat/sockstat.pl index 5ac1cc9dd987..0f871c55e305 100644 --- a/usr.bin/sockstat/sockstat.pl +++ b/usr.bin/sockstat/sockstat.pl @@ -53,7 +53,7 @@ sub gather() { if (!defined($pid = open(PIPE, "-|"))) { die("open(netstat): $!\n"); } elsif ($pid == 0) { - exec("/usr/bin/netstat", "-Aan"); + exec("/usr/bin/netstat", "-AanW"); die("exec(netstat): $!\n"); } while ($line = <PIPE>) { |
