diff options
author | Ermal Luçi <eri@pfsense.org> | 2008-11-29 23:32:27 +0000 |
---|---|---|
committer | Ermal Luçi <eri@pfsense.org> | 2008-11-29 23:32:27 +0000 |
commit | 5d08d8f68e08b3553aa6306b876cea27d3c1897c (patch) | |
tree | 7f1334c5c9a87709123148ca4ba18ddaa7f57b24 | |
parent | 56247166583d8ffd7269d094f88173313c95fef9 (diff) | |
download | pfsense-5d08d8f68e08b3553aa6306b876cea27d3c1897c.zip pfsense-5d08d8f68e08b3553aa6306b876cea27d3c1897c.tar.gz |
Fix not needed escapes when using <<<EOF like start/end terminators. Pointy-hat: myself.
-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 3f9f9eb..82f87a7 100644 --- a/etc/inc/filter.inc +++ b/etc/inc/filter.inc @@ -2036,7 +2036,7 @@ EOD; if (isset($config['nat']['rule']) && (!isset($config['system']['disablenatreflection']))) { $ipfrules .= <<<EOD -pass in inet tagged PFREFLECT keep state label \"NAT REFLECT: Allow traffic to localhost\""; +pass in inet tagged PFREFLECT keep state label "NAT REFLECT: Allow traffic to localhost" EOD; } |