diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-06-30 15:36:46 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-06-30 15:50:14 -0700 |
commit | b14eb8d6169c7b00f339c97ddd37d4021936a53d (patch) | |
tree | a836739076b4ff8c6277a900ed1dc07cd101db80 /lib | |
parent | 3152777db845ff8ef6a0fca969f3cda9c1df8f9b (diff) | |
download | vyatta-cfg-qos-b14eb8d6169c7b00f339c97ddd37d4021936a53d.tar.gz vyatta-cfg-qos-b14eb8d6169c7b00f339c97ddd37d4021936a53d.zip |
Fix match rule on incoming interface
Bug 5769
The incoming interface index was recorded with _dev but code
was looking for _indev
Diffstat (limited to 'lib')
-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 fd71f4a..f92f849 100644 --- a/lib/Vyatta/Qos/Match.pm +++ b/lib/Vyatta/Qos/Match.pm @@ -57,7 +57,7 @@ sub new { } $self->{_vif} = $config->returnValue("vif"); - $self->{_dev} = getIfIndex( $config->returnValue("interface") ); + $self->{_indev} = getIfIndex( $config->returnValue("interface") ); return $self; } |