diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-03-20 11:41:39 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-03-20 11:41:39 -0700 |
commit | de48b5016dfc2b0bfbfe24af79192940f3812588 (patch) | |
tree | e90b5ba9f7d11789bdd905b241ab9720a636a67c /lib/Vyatta/Qos/Match.pm | |
parent | c478a26aaca7dc7fcd55c628eae73189ff0c74bc (diff) | |
download | vyatta-cfg-qos-de48b5016dfc2b0bfbfe24af79192940f3812588.tar.gz vyatta-cfg-qos-de48b5016dfc2b0bfbfe24af79192940f3812588.zip |
Fix problems created by switch to using 'select'
Some code was still using old interface.
Diffstat (limited to 'lib/Vyatta/Qos/Match.pm')
-rw-r--r-- | lib/Vyatta/Qos/Match.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Vyatta/Qos/Match.pm b/lib/Vyatta/Qos/Match.pm index ecfa09d..587704f 100644 --- a/lib/Vyatta/Qos/Match.pm +++ b/lib/Vyatta/Qos/Match.pm @@ -73,7 +73,7 @@ sub filter { if (defined $dsmark && defined $ip && defined $$ip{dsfield}) { printf "filter add dev %s parent %x: protocol ip prio 1", $dev, $parent; - printf ${out} " handle %d tcindex", $$ip{dsfield}; + printf " handle %d tcindex", $$ip{dsfield}; return; } |