diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-07-15 09:41:42 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-07-15 09:41:42 -0700 |
commit | 9afa2948d8f6a01d1532d8fd550510d9d39decd7 (patch) | |
tree | 4972a5a407fb675be7fb50176d21c7e448dfa9d9 /lib | |
parent | 2e3b3880e416f56834680a3f87091d9226b443bb (diff) | |
download | vyatta-cfg-qos-9afa2948d8f6a01d1532d8fd550510d9d39decd7.tar.gz vyatta-cfg-qos-9afa2948d8f6a01d1532d8fd550510d9d39decd7.zip |
Fix rate limiter
Missing $ in script
Bug 5854
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Vyatta/Qos/RateLimiter.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Vyatta/Qos/RateLimiter.pm b/lib/Vyatta/Qos/RateLimiter.pm index d4b3f95..633eb91 100644 --- a/lib/Vyatta/Qos/RateLimiter.pm +++ b/lib/Vyatta/Qos/RateLimiter.pm @@ -36,7 +36,7 @@ sub new { my $class = ref($that) || $that; my $self = {%fields}; - my $bw = config->returnValue("bandwidth"); + my $bw = $config->returnValue("bandwidth"); defined $bw or die "$level bandwidth not defined\n"; $self->{_rate} = getRate($bw); |