summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Buechler <cmb@pfsense.org>2014-07-09 00:07:36 -0500
committerChris Buechler <cmb@pfsense.org>2014-07-09 00:08:04 -0500
commit9edcc5faaff3470f20ea1c193a8b00bd8a2a18ea (patch)
treea7da2b6e52bf2c19bb5e3c05d05794430a2a779a
parent1ee3a2955ab37f6e8d858fba4ac2cd6b02eaba67 (diff)
downloadpfsense-9edcc5faaff3470f20ea1c193a8b00bd8a2a18ea.zip
pfsense-9edcc5faaff3470f20ea1c193a8b00bd8a2a18ea.tar.gz
no () around qlength here
-rw-r--r--etc/inc/shaper.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/shaper.inc b/etc/inc/shaper.inc
index 5bfa81e..f4eed16 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())
OpenPOWER on IntegriCloud