summaryrefslogtreecommitdiff
path: root/lib/Vyatta/Qos
diff options
context:
space:
mode:
authorStephen Hemminger <stephen.hemminger@vyatta.com>2010-06-30 15:36:46 -0700
committerStephen Hemminger <stephen.hemminger@vyatta.com>2010-06-30 15:50:14 -0700
commitb14eb8d6169c7b00f339c97ddd37d4021936a53d (patch)
treea836739076b4ff8c6277a900ed1dc07cd101db80 /lib/Vyatta/Qos
parent3152777db845ff8ef6a0fca969f3cda9c1df8f9b (diff)
downloadvyatta-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/Vyatta/Qos')
-rw-r--r--lib/Vyatta/Qos/Match.pm2
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;
}