From b23c4faf070e8e5dc0eacee19c1dc379a0e9bcf5 Mon Sep 17 00:00:00 2001 From: Stephen Hemminger Date: Fri, 11 Jul 2008 15:09:57 -0700 Subject: Fix error message when ceiling < rate Should say "greater or equal" not "less than" Bug 2919 --- scripts/VyattaQosTrafficShaper.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') 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; -- cgit v1.2.3