summaryrefslogtreecommitdiff
path: root/scripts/VyattaQosMatch.pm
diff options
context:
space:
mode:
authorStephen Hemminger <stephen.hemminger@vyatta.com>2008-04-09 15:00:49 -0500
committerStephen Hemminger <stephen.hemminger@vyatta.com>2008-04-09 15:00:49 -0500
commit71f56ba1de7d6537255a6df783cebe4d2b6f0786 (patch)
tree103f67fd111d9e19ec2c50316187a36d9a86791e /scripts/VyattaQosMatch.pm
parent2437f45c1c6642d89f72c95b201b87081b7a5d0b (diff)
downloadvyatta-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>
Diffstat (limited to 'scripts/VyattaQosMatch.pm')
-rw-r--r--scripts/VyattaQosMatch.pm2
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;
}