diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-07-11 15:09:57 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-07-11 15:09:57 -0700 |
commit | b23c4faf070e8e5dc0eacee19c1dc379a0e9bcf5 (patch) | |
tree | 8b2ec285cbf89912f9060c22f540e5fa4d4bc38a | |
parent | 9feafc076767ded8a1133a83fb02a699cd2816cd (diff) | |
download | vyatta-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.pm | 2 |
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; |