summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Hemminger <stephen.hemminger@vyatta.com>2010-07-12 11:05:56 -0700
committerStephen Hemminger <stephen.hemminger@vyatta.com>2010-07-12 11:05:56 -0700
commit7ea34d0a732abe1ce919d5b449a7153f8e7e296e (patch)
tree181a541b609ef7ca5da74039a1c0719ad5054748
parent5c7305c2a6246e70823072b57092782e5de11092 (diff)
downloadvyatta-cfg-qos-7ea34d0a732abe1ce919d5b449a7153f8e7e296e.tar.gz
vyatta-cfg-qos-7ea34d0a732abe1ce919d5b449a7153f8e7e296e.zip
Fix typo in ematch/fwmark filter
Needs to be fwmark no fw_mark
-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 48e92c3..79cd0d3 100644
--- a/lib/Vyatta/Qos/Match.pm
+++ b/lib/Vyatta/Qos/Match.pm
@@ -151,7 +151,7 @@ sub filter {
print " protocol all basic";
print " match meta\(rt_iif eq $indev\)" if $indev;
print " match meta\(vlan mask 0xfff eq $vif\)" if $vif;
- print " match meta\(fw_mark eq $fwmark\)" if $fwmark;
+ print " match meta\(fwmark eq $fwmark\)" if $fwmark;
print " $police" if $police;
printf " flowid %x:%x\n", $parent, $classid;