diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-02-17 13:09:25 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-02-17 13:09:25 -0800 |
commit | ce9294f692b2dba5615c5cc94a2eb183fb535ce3 (patch) | |
tree | 21800f216fe6068b99e9458204749bdc20c19a03 | |
parent | b0b729fe02815140960e7c394d533f4f85764ea9 (diff) | |
download | vyatta-cfg-qos-ce9294f692b2dba5615c5cc94a2eb183fb535ce3.tar.gz vyatta-cfg-qos-ce9294f692b2dba5615c5cc94a2eb183fb535ce3.zip |
Fix typo in filtering for match
Missing space in command cause failure of filter.
Introduced with previous change to allow any protocol.
-rw-r--r-- | lib/Vyatta/Qos/Match.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Vyatta/Qos/Match.pm b/lib/Vyatta/Qos/Match.pm index 7985894..41ed4f1 100644 --- a/lib/Vyatta/Qos/Match.pm +++ b/lib/Vyatta/Qos/Match.pm @@ -108,7 +108,7 @@ sub filter { print " protocol $type basic"; } } else { - print "protocol all u32"; + print " protocol all u32"; # workaround inconsistent usage in tc u32 match my $sel = $proto; |