diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-01-15 20:02:19 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-01-15 20:02:19 +0000 |
commit | 77afe68386ae6a9bd82efcff3faba019f15b42e7 (patch) | |
tree | 4d28bcb6ceb1883c05833548b6d22d03d39bb66b /etc | |
parent | 110d107688e6b6178b2c1a832afbd04b80c076fc (diff) | |
download | pfsense-77afe68386ae6a9bd82efcff3faba019f15b42e7.zip pfsense-77afe68386ae6a9bd82efcff3faba019f15b42e7.tar.gz |
Remove ()
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/filter.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc index 0c65c7f..9d684ff 100644 --- a/etc/inc/filter.inc +++ b/etc/inc/filter.inc @@ -1392,7 +1392,7 @@ EOD; generate_optcfg_array($optcfg); foreach($optcfg as $oc) { if(!isset($oc['gateway']) && $oc['if'] <> "") { - $ipfrules .= "pass in quick on (" . $oc['if'] . ") inet proto tcp from any to (lo0) port 21 keep state label \"FTP PROXY: Allow traffic to localhost\"\n"; + $ipfrules .= "pass in quick on " . $oc['if'] . " inet proto tcp from any to (lo0) port 21 keep state label \"FTP PROXY: Allow traffic to localhost\"\n"; } } |