diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-06-01 15:58:59 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-06-01 15:59:30 -0700 |
commit | 9a196ccf0c23533b951a36b3d56dad2103e1479b (patch) | |
tree | c1499ca206467ae803a4583c539a1980c9eaa706 | |
parent | f3b45e56dd88d41b294c663e82f9684d53f0acb9 (diff) | |
download | vyatta-cfg-qos-9a196ccf0c23533b951a36b3d56dad2103e1479b.tar.gz vyatta-cfg-qos-9a196ccf0c23533b951a36b3d56dad2103e1479b.zip |
Fix handling of qos-percent/rate values
Typo in syntax validation script
Bug 4485
-rwxr-xr-x | scripts/vyatta-qos-util.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vyatta-qos-util.pl b/scripts/vyatta-qos-util.pl index 9468065..6dae105 100755 --- a/scripts/vyatta-qos-util.pl +++ b/scripts/vyatta-qos-util.pl @@ -57,7 +57,7 @@ GetOptions( ) or usage(); getPercent($percent) if $percent; -getPercentOrRate($percent) if $percentrate; +getPercentOrRate($percentrate) if $percentrate; getRate($rate) if $rate; getBurstSize($burst) if $burst; getProtocol($protocol) if $protocol; |