diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-02-10 15:24:26 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-02-10 15:24:26 -0800 |
commit | 491736d14c1fbd8f5ba62dff41633ebf8cb8b189 (patch) | |
tree | 135f83c714f160808daea661666e8c14347100e5 /lib | |
parent | d5e1f4c2bd00570d6dabc37b8ff8704bfd71071e (diff) | |
download | vyatta-cfg-qos-491736d14c1fbd8f5ba62dff41633ebf8cb8b189.tar.gz vyatta-cfg-qos-491736d14c1fbd8f5ba62dff41633ebf8cb8b189.zip |
Fix double prefix when setting up ShaperClass
Don't need to use Vyatta::Qos twice.
Global search/replace strikes again
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Vyatta/Qos/TrafficShaper.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Vyatta/Qos/TrafficShaper.pm b/lib/Vyatta/Qos/TrafficShaper.pm index f7bfc35..71f55d3 100644 --- a/lib/Vyatta/Qos/TrafficShaper.pm +++ b/lib/Vyatta/Qos/TrafficShaper.pm @@ -115,7 +115,7 @@ sub _define { $config->setLevel("$level default"); - push @classes, new Vyatta::Qos::Vyatta::Qos::ShaperClass($config); + push @classes, new Vyatta::Qos::ShaperClass($config); $config->setLevel($level); foreach my $id ( $config->listNodes("class") ) { |