no () around qlength here

This commit is contained in:
Chris Buechler 2014-07-09 00:07:36 -05:00
parent 1ee3a2955a
commit 9edcc5faaf

View File

@ -531,7 +531,7 @@ class altq_root_queue {
if ($this->GetScheduler())
$rules .= " ".strtolower($this->GetScheduler());
if ($this->GetQlimit() > 0)
$rules .= " ( qlimit " . $this->GetQlimit() . " ) ";
$rules .= " qlimit " . $this->GetQlimit() . " ";
if ($this->GetBandwidth()) {
$rules .= " bandwidth ".trim($this->GetBandwidth());
if ($this->GetBwscale())