diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-05-19 11:28:10 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-05-19 11:28:10 -0700 |
commit | 41d59aa4009874009e1aabf7923fc47874ef6fca (patch) | |
tree | 9e9970c09803752380ed754cd281ee9d0a15d980 /lib/Vyatta/Qos/RoundRobin.pm | |
parent | e660829287cfe516b81e0a2c3048f45d702faac0 (diff) | |
download | vyatta-cfg-qos-41d59aa4009874009e1aabf7923fc47874ef6fca.tar.gz vyatta-cfg-qos-41d59aa4009874009e1aabf7923fc47874ef6fca.zip |
Fix missing comma in drr setup
This would cause bug.
Diffstat (limited to 'lib/Vyatta/Qos/RoundRobin.pm')
-rw-r--r-- | lib/Vyatta/Qos/RoundRobin.pm | 2 |
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 ); |