diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-04-09 15:00:49 -0500 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-04-09 15:00:49 -0500 |
commit | 71f56ba1de7d6537255a6df783cebe4d2b6f0786 (patch) | |
tree | 103f67fd111d9e19ec2c50316187a36d9a86791e | |
parent | 2437f45c1c6642d89f72c95b201b87081b7a5d0b (diff) | |
download | vyatta-cfg-qos-71f56ba1de7d6537255a6df783cebe4d2b6f0786.tar.gz vyatta-cfg-qos-71f56ba1de7d6537255a6df783cebe4d2b6f0786.zip |
Fix match rule formatting
Internal TC commands use hex for identifiers and one place in perl
script forgot to reformat.
Bugfix for 3142 from Chris Smith <chris.smith@conceptcoders.com>
-rw-r--r-- | scripts/VyattaQosMatch.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/VyattaQosMatch.pm b/scripts/VyattaQosMatch.pm index cfc5ed2..44ece49 100644 --- a/scripts/VyattaQosMatch.pm +++ b/scripts/VyattaQosMatch.pm @@ -88,5 +88,5 @@ sub filter { print {$out} " match meta\(vlan mask 0xfff eq $vif\)" if (defined $vif); } - print {$out} " classid $parent:$id\n"; + printf {$out} " classid $parent:%x\n", $id; } |