diff options
author | Martin Fuchs <mfuchs@pfsense.org> | 2008-08-16 13:17:27 +0000 |
---|---|---|
committer | Martin Fuchs <mfuchs@pfsense.org> | 2008-08-16 13:17:27 +0000 |
commit | 1784141b3ba659817379a98271bc4e49ab1ce286 (patch) | |
tree | 54acaeb0fbc7669e496c93757110cd618c484d9f /packages/squid | |
parent | 4a06272b056a9866e11bf5479b06811c57b495c3 (diff) | |
download | pfsense-packages-1784141b3ba659817379a98271bc4e49ab1ce286.tar.gz pfsense-packages-1784141b3ba659817379a98271bc4e49ab1ce286.tar.bz2 pfsense-packages-1784141b3ba659817379a98271bc4e49ab1ce286.zip |
squid: no_cache was renamed in 2.6 to cache to better reflect the functionaliy. no_cache still accepted, but perhaps not in future versions...
Diffstat (limited to 'packages/squid')
-rw-r--r-- | packages/squid/squid.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/squid/squid.inc b/packages/squid/squid.inc index d79bdb28..2c62b5f3 100644 --- a/packages/squid/squid.inc +++ b/packages/squid/squid.inc @@ -608,7 +608,7 @@ EOD; if (!empty($donotcache)) { file_put_contents(SQUID_ACLDIR . '/donotcache.acl', $donotcache); $conf .= 'acl donotcache dstdomain "' . SQUID_ACLDIR . "/donotcache.acl\"\n"; - $conf .= 'no_cache deny donotcache'; + $conf .= 'cache deny donotcache'; } return $conf; |