diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-03-30 10:53:40 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-03-30 10:53:40 -0700 |
commit | d0c1bbc1969a2418200e083aa8f5a21b2e80c3b4 (patch) | |
tree | cb8eff16d4ddfb69af4c63f080830faf7c49b005 | |
parent | b7ba501ef084124a949801d6c89a5330d33a7fa8 (diff) | |
download | vyatta-op-qos-d0c1bbc1969a2418200e083aa8f5a21b2e80c3b4.tar.gz vyatta-op-qos-d0c1bbc1969a2418200e083aa8f5a21b2e80c3b4.zip |
fix typo in 3 arg conversion
-rwxr-xr-x | scripts/vyatta-show-queueing.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vyatta-show-queueing.pl b/scripts/vyatta-show-queueing.pl index 8bb98c2..6308c8f 100755 --- a/scripts/vyatta-show-queueing.pl +++ b/scripts/vyatta-show-queueing.pl @@ -66,7 +66,7 @@ sub show_brief { printf $fmt, 'Interface', 'Qos-Policy', 'Sent', 'Dropped', 'Overlimit'; # Read qdisc info - open( my $tc, '|-', '/sbin/tc -s qdisc ls' ) + open( my $tc, '-|', '/sbin/tc -s qdisc ls' ) or die 'tc qdisc command failed'; my @lines; |