diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-03-05 13:49:25 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-03-05 13:49:25 -0800 |
commit | a10842730f3d88f78ea00ec3f912bfd1a412b584 (patch) | |
tree | 0afe1cdb43404529d5dc306645f09feb73e298c4 /templates | |
parent | 64387400430a78089a6d913e06432f59205562f5 (diff) | |
download | vyatta-cfg-qos-a10842730f3d88f78ea00ec3f912bfd1a412b584.tar.gz vyatta-cfg-qos-a10842730f3d88f78ea00ec3f912bfd1a412b584.zip |
Fix syntax checking for queue-limit
Bugfix: 2937
Enforce queue limit > 1
Diffstat (limited to 'templates')
-rw-r--r-- | templates/qos-policy/fair-queue/node.tag/queue-limit/node.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/qos-policy/fair-queue/node.tag/queue-limit/node.def b/templates/qos-policy/fair-queue/node.tag/queue-limit/node.def index ffc739c..647c817 100644 --- a/templates/qos-policy/fair-queue/node.tag/queue-limit/node.def +++ b/templates/qos-policy/fair-queue/node.tag/queue-limit/node.def @@ -1,3 +1,3 @@ type: u32 -syntax:expression: ($VAR(@) > 1) : "Queue limit must greater than 1" +syntax:expression: $VAR(@) > 1; "Queue limit must greater than 1" help: Maximum queue size (packets) |