summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2005-09-09 17:47:27 +0000
committerScott Ullrich <sullrich@pfsense.org>2005-09-09 17:47:27 +0000
commit2e56710cc4d4af96740f4c872f9341894226c697 (patch)
tree97c06728e9c76ff791755cbd96f1ffd558f1950b /etc
parentec11a1adce38722253bd1e0487a246d6760d1117 (diff)
downloadpfsense-2e56710cc4d4af96740f4c872f9341894226c697.zip
pfsense-2e56710cc4d4af96740f4c872f9341894226c697.tar.gz
Ticket #467 destination network on firewall_nat_out_edit.php incorrectly parsed.
Submitted-by-someone-who-refuses-to-accept-cvs-account: databeestje
Diffstat (limited to 'etc')
-rw-r--r--etc/inc/filter.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc
index f26d586..d27d60a 100644
--- a/etc/inc/filter.inc
+++ b/etc/inc/filter.inc
@@ -972,9 +972,9 @@ function filter_nat_rules_generate() {
$src = $obent['source']['network'];
if (isset($obent['destination']['not']) && !isset($obent['destination']['any']))
- $dst = "!" . $obent['destination']['network'];
+ $dst = "!" . $obent['destination']['address'];
else
- $dst = $obent['destination']['network'];
+ $dst = $obent['destination']['address'];
if (!$obent['interface'] || ($obent['interface'] == "wan"))
OpenPOWER on IntegriCloud