diff options
-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 4ea494c..b3a05a6 100644 --- a/scripts/VyattaQosTrafficShaper.pm +++ b/scripts/VyattaQosTrafficShaper.pm @@ -255,7 +255,7 @@ sub _getAutoRate { if ( $rate eq "auto" ) { $rate = VyattaQosUtil::interfaceRate($dev); if ( ! defined $rate ) { - die "Interface speed defined as auto but can't get rate from $dev\n"; + die "Interface $dev speed cannot be determined; use explicit bandwidth value\n"; } } else { $rate = VyattaQosUtil::getRate($rate); |