summaryrefslogtreecommitdiff
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:36:46 -0700
commit66c1789e80f6fe0da15a876eb84aa36ad0290767 (patch)
tree8ca92566d44f83bb7e3ccfa1d7dab5362e631472
parent6b6c1cc55fb43df9eac1e1c53cc354885b6650ef (diff)
downloadvyatta-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.pm2
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;
}