diff options
author | Ermal <eri@pfsense.org> | 2010-12-29 11:07:41 +0000 |
---|---|---|
committer | Ermal <eri@pfsense.org> | 2010-12-29 11:07:41 +0000 |
commit | d4c84dfdbad19306d1ef2827fcb4fc436b908106 (patch) | |
tree | 4c10f7cbf4b6accbe2ec6585b10f20341dadccc1 /config/squid3/squid.inc | |
parent | 76aab977b8cd6b7cf7b24a018cdd5107956f5109 (diff) | |
download | pfsense-packages-d4c84dfdbad19306d1ef2827fcb4fc436b908106.tar.gz pfsense-packages-d4c84dfdbad19306d1ef2827fcb4fc436b908106.tar.bz2 pfsense-packages-d4c84dfdbad19306d1ef2827fcb4fc436b908106.zip |
Do not call filter_configure_sync directly since this is not best practice
Diffstat (limited to 'config/squid3/squid.inc')
-rw-r--r-- | config/squid3/squid.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/squid3/squid.inc b/config/squid3/squid.inc index c1b5b419..784fea8f 100644 --- a/config/squid3/squid.inc +++ b/config/squid3/squid.inc @@ -286,7 +286,7 @@ function squid_deinstall_command() { mwexec("ps awux | grep \"dnsserver\" | grep -v \"grep\" | awk '{ print $2 }' | xargs kill"); mwexec("ps awux | grep \"unlinkd\" | grep -v \"grep\" | awk '{ print $2 }' | xargs kill"); update_status("Reloading filter..."); - filter_configure_sync(); + filter_configure(); } function squid_before_form_general($pkg) { |