summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Hemminger <stephen.hemminger@vyatta.com>2010-03-30 10:53:40 -0700
committerStephen Hemminger <stephen.hemminger@vyatta.com>2010-03-30 10:53:40 -0700
commitd0c1bbc1969a2418200e083aa8f5a21b2e80c3b4 (patch)
treecb8eff16d4ddfb69af4c63f080830faf7c49b005
parentb7ba501ef084124a949801d6c89a5330d33a7fa8 (diff)
downloadvyatta-op-qos-d0c1bbc1969a2418200e083aa8f5a21b2e80c3b4.tar.gz
vyatta-op-qos-d0c1bbc1969a2418200e083aa8f5a21b2e80c3b4.zip
fix typo in 3 arg conversion
-rwxr-xr-xscripts/vyatta-show-queueing.pl2
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;