From 035b985f2789089ed9d68ad2568c5ac0901eda4e Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Tue, 14 Apr 2009 14:39:13 -0400 Subject: Check to see if the pkg is not off --- config/squid/squid.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'config/squid/squid.inc') diff --git a/config/squid/squid.inc b/config/squid/squid.inc index 0ce8b2fb..113bc09f 100644 --- a/config/squid/squid.inc +++ b/config/squid/squid.inc @@ -1244,7 +1244,7 @@ function squid_generate_rules($type) { $rules .= "rdr on $iface proto tcp from any to !($iface) port 80 -> 127.0.0.1 port 80\n"; } /* Handle PPPOE case */ - if($config['pppoe']['mode'] == "server") { + if($config['pppoe']['mode'] == "off") { $rules .= "rdr on \$pppoe proto tcp from any to !(\$pppoe) port 80 -> 127.0.0.1 port 80\n"; } /* Handle PPTP case */ @@ -1260,7 +1260,7 @@ function squid_generate_rules($type) { $rules .= "pass in quick on $iface proto tcp from any to !($iface) port $port flags S/SA keep state\n"; $rules .= "\n"; }; - if($config['pppoe']['mode'] == "server") { + if($config['pppoe']['mode'] == "off") { $rules .= "pass in quick on \$pppoe proto tcp from any to !(\$pppoe) port $port flags S/SA keep state\n"; } if($config['pptpd']['mode'] != "off") { -- cgit v1.2.3