aboutsummaryrefslogtreecommitdiffstats
path: root/config/squid3
diff options
context:
space:
mode:
authorMartin Fuchs <martin.fuchs@trendchiller.com>2011-07-09 00:06:15 +0200
committerMartin Fuchs <martin.fuchs@trendchiller.com>2011-07-09 00:06:15 +0200
commitdecd908c08472e5a18f204d4727a1f3bfd949b4f (patch)
treeca9ca748b0518b2ed56607290314583473bffdde /config/squid3
parentd66ab45d4f326dd19edefc183bc2f9d3c73f58a6 (diff)
downloadpfsense-packages-decd908c08472e5a18f204d4727a1f3bfd949b4f.tar.gz
pfsense-packages-decd908c08472e5a18f204d4727a1f3bfd949b4f.tar.bz2
pfsense-packages-decd908c08472e5a18f204d4727a1f3bfd949b4f.zip
correct syntax
Diffstat (limited to 'config/squid3')
-rw-r--r--config/squid3/squid.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/squid3/squid.inc b/config/squid3/squid.inc
index 1e836a6a..417eaeae 100644
--- a/config/squid3/squid.inc
+++ b/config/squid3/squid.inc
@@ -895,7 +895,7 @@ function squid_resync_traffic() {
$down_limit = ($settings['max_download_size'] ? $settings['max_download_size'] : 0);
$conf .= "request_body_max_size $up_limit KB\n";
if ($down_limit != 0)
- $conf .= 'reply_body_max_size ' . ($down_limit * 1024) . " all \n";
+ $conf .= 'reply_body_max_size ' . $down_limit . " KB all \n";
// Only apply throttling past 10MB
// XXX: Should this really be hardcoded?