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:36:46 -0700 |
commit | 66c1789e80f6fe0da15a876eb84aa36ad0290767 (patch) | |
tree | 8ca92566d44f83bb7e3ccfa1d7dab5362e631472 | |
parent | 6b6c1cc55fb43df9eac1e1c53cc354885b6650ef (diff) | |
download | vyatta-cfg-qos-66c1789e80f6fe0da15a876eb84aa36ad0290767.tar.gz vyatta-cfg-qos-66c1789e80f6fe0da15a876eb84aa36ad0290767.zip |
Fix match rule on incoming interface
Bug 5769
The incoming interface index was recorded with _dev but code
was looking for _indev
-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 41ed4f1..c2f00a3 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; } |