summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Hemminger <stephen.hemminger@vyatta.com>2008-07-11 15:09:57 -0700
committerStephen Hemminger <stephen.hemminger@vyatta.com>2008-07-11 15:09:57 -0700
commitb23c4faf070e8e5dc0eacee19c1dc379a0e9bcf5 (patch)
tree8b2ec285cbf89912f9060c22f540e5fa4d4bc38a
parent9feafc076767ded8a1133a83fb02a699cd2816cd (diff)
downloadvyatta-cfg-qos-b23c4faf070e8e5dc0eacee19c1dc379a0e9bcf5.tar.gz
vyatta-cfg-qos-b23c4faf070e8e5dc0eacee19c1dc379a0e9bcf5.zip
Fix error message when ceiling < rate
Should say "greater or equal" not "less than" Bug 2919
-rw-r--r--scripts/VyattaQosTrafficShaper.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/VyattaQosTrafficShaper.pm b/scripts/VyattaQosTrafficShaper.pm
index 6b76eb0..5ba60dd 100644
--- a/scripts/VyattaQosTrafficShaper.pm
+++ b/scripts/VyattaQosTrafficShaper.pm
@@ -119,7 +119,7 @@
if (defined $ceil && $ceil < $rate) {
print "Configuration error in: $level\n";
printf STDERR
- "The bandwidth ceiling for this class (%dKbps) must be less than\n",
+ "The bandwidth ceiling for this class (%dKbps) must be greater or equal to\n",
$ceil / 1000;
printf STDERR "the reserved bandwidth for the class (%dKbps)\n",
$rate / 1000;