summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Hemminger <stephen.hemminger@vyatta.com>2009-05-19 11:28:10 -0700
committerStephen Hemminger <stephen.hemminger@vyatta.com>2009-05-19 11:28:10 -0700
commit41d59aa4009874009e1aabf7923fc47874ef6fca (patch)
tree9e9970c09803752380ed754cd281ee9d0a15d980
parente660829287cfe516b81e0a2c3048f45d702faac0 (diff)
downloadvyatta-cfg-qos-41d59aa4009874009e1aabf7923fc47874ef6fca.tar.gz
vyatta-cfg-qos-41d59aa4009874009e1aabf7923fc47874ef6fca.zip
Fix missing comma in drr setup
This would cause bug.
-rw-r--r--lib/Vyatta/Qos/RoundRobin.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Vyatta/Qos/RoundRobin.pm b/lib/Vyatta/Qos/RoundRobin.pm
index fadd8c3..83a41b7 100644
--- a/lib/Vyatta/Qos/RoundRobin.pm
+++ b/lib/Vyatta/Qos/RoundRobin.pm
@@ -72,7 +72,7 @@ sub commands {
print "\n";
foreach my $class (@$classes) {
- $class->gen_class( $dev, 'drr' $parent );
+ $class->gen_class( $dev, 'drr', $parent );
$class->gen_leaf( $dev, $parent );
foreach my $match ( $class->matchRules() ) {
$match->filter( $dev, $parent, 1 );