From 66c1789e80f6fe0da15a876eb84aa36ad0290767 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(-) 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; } -- cgit v1.2.3