diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2004-11-21 07:16:22 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2004-11-21 07:16:22 +0000 |
commit | b39fb87c3ea3960b7f19cbf929bd52cba812c45c (patch) | |
tree | 9baad67584d901b14ddeaac62990252ca76d7469 /etc | |
parent | 42d88fb28e1f43cbdf5bbd82ad2e233ce2827682 (diff) | |
download | pfsense-b39fb87c3ea3960b7f19cbf929bd52cba812c45c.zip pfsense-b39fb87c3ea3960b7f19cbf929bd52cba812c45c.tar.gz |
Surround interface with ()
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 05675e2..6fb898c 100644 --- a/etc/inc/filter.inc +++ b/etc/inc/filter.inc @@ -263,7 +263,7 @@ function filter_nat_rules_generate_if($if, $src, $dst, $target) { $tgt = "0/32"; $natrule = <<<EOD -nat on $if from $src to any -> $if +nat on $if from $src to any -> ($if) EOD; return $natrule; |