diff options
author | Chris Buechler <cmb@pfsense.org> | 2014-07-09 00:07:36 -0500 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2014-07-09 00:07:36 -0500 |
commit | a061ddb90a4ab4ec1fc739960780e0ff84e72b59 (patch) | |
tree | 836314f934d382a31b8cba2081b83b32d91778da /etc | |
parent | c9a88bbd88ab31fe0ab911b51d108e136ab9c22b (diff) | |
download | pfsense-a061ddb90a4ab4ec1fc739960780e0ff84e72b59.zip pfsense-a061ddb90a4ab4ec1fc739960780e0ff84e72b59.tar.gz |
no () around qlength here
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/shaper.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/shaper.inc b/etc/inc/shaper.inc index 7674430..fddff92 100644 --- a/etc/inc/shaper.inc +++ b/etc/inc/shaper.inc @@ -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()) |