From b14eb8d6169c7b00f339c97ddd37d4021936a53d Mon Sep 17 00:00:00 2001 From: Stephen Hemminger Date: Wed, 30 Jun 2010 15:36:46 -0700 Subject: Fix match rule on incoming interface Bug 5769 The incoming interface index was recorded with _dev but code was looking for _indev --- lib/Vyatta/Qos/Match.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/Vyatta/Qos') 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; } -- cgit v1.2.3