diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-02-06 11:36:21 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-02-06 11:36:21 -0800 |
commit | 1c7e03dc0c52c03e87487985ed5877be4e52134a (patch) | |
tree | 28ad11af90b085b252f2e1d616c543e481a3aac4 /scripts/VyattaQosTrafficShaper.pm | |
parent | 92562803d1c3512dac79e48ad10ea49bf6a117d0 (diff) | |
download | vyatta-cfg-qos-1c7e03dc0c52c03e87487985ed5877be4e52134a.tar.gz vyatta-cfg-qos-1c7e03dc0c52c03e87487985ed5877be4e52134a.zip |
fix update problems
1. checking for name clash shouldn't see self
2. leftover from rate to bandwidth name change
3. leftover debug message.
Diffstat (limited to 'scripts/VyattaQosTrafficShaper.pm')
-rw-r--r-- | scripts/VyattaQosTrafficShaper.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/VyattaQosTrafficShaper.pm b/scripts/VyattaQosTrafficShaper.pm index e051542..2d09244 100644 --- a/scripts/VyattaQosTrafficShaper.pm +++ b/scripts/VyattaQosTrafficShaper.pm @@ -153,7 +153,7 @@ sub _define { my $level = $config->setLevel(); my @classes = ( ); - $self->{_rate} = $config->returnValue("rate"); + $self->{_rate} = $config->returnValue("bandwidth"); $config->exists("default") or die "Configuration not complete: missing default class\n"; |