diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-03-20 08:46:20 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-03-20 08:46:20 -0700 |
commit | e2773504354d08d67d64ec7d27530abb8b4c8075 (patch) | |
tree | a5fcac330e9839c3d5be154af0b7ca2ccb67087b /scripts/vyatta-qos-util.pl | |
parent | 21eeca4065f9fd8c120707a4de8b92acb0402585 (diff) | |
download | vyatta-cfg-qos-e2773504354d08d67d64ec7d27530abb8b4c8075.tar.gz vyatta-cfg-qos-e2773504354d08d67d64ec7d27530abb8b4c8075.zip |
Put back the bugfix for numeric input
Revert "More unfrozen stuff"
This reverts commit f1e5d5991c8fc1420d00ef51c826f77b2d8c2bbd.
Diffstat (limited to 'scripts/vyatta-qos-util.pl')
-rwxr-xr-x | scripts/vyatta-qos-util.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vyatta-qos-util.pl b/scripts/vyatta-qos-util.pl index 36d8a17..545e766 100755 --- a/scripts/vyatta-qos-util.pl +++ b/scripts/vyatta-qos-util.pl @@ -36,7 +36,7 @@ if ( defined $rate ) { } if ( defined $burst ) { - my $b = VyattaQosUtil::getSize($burst); + my $b = VyattaQosUtil::getBurstSize($burst); exit 0; } |