summaryrefslogtreecommitdiffstats
path: root/etc/inc/filter.inc
diff options
context:
space:
mode:
authorChris Buechler <cmb@pfsense.org>2009-05-11 12:54:59 -0400
committerChris Buechler <cmb@pfsense.org>2009-05-11 12:54:59 -0400
commit82f4ffb588580298f13dd768f113520464b70cea (patch)
treecb57774a92981f5fd8e333de56f2425f4d6de247 /etc/inc/filter.inc
parent42cf9c5cb8e54f792c0b78520e67ff2867cb35da (diff)
downloadpfsense-82f4ffb588580298f13dd768f113520464b70cea.zip
pfsense-82f4ffb588580298f13dd768f113520464b70cea.tar.gz
add missing \n's caught by jim-p
Diffstat (limited to 'etc/inc/filter.inc')
-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 5075d18..7020c10 100644
--- a/etc/inc/filter.inc
+++ b/etc/inc/filter.inc
@@ -3042,7 +3042,7 @@ function create_firewall_outgoing_rules_to_itself() {
/* If the interface has a gateway we do not add a pass in rule. */
/* Some people use a TUN tunnel with public IP as a Multiwan interface */
if(interface_has_gateway("tun{$x}")) {
- $rule .= "# Not adding default pass in rule for interface $friendlytunif - tun{$x} with a gateway!";
+ $rule .= "# Not adding default pass in rule for interface $friendlytunif - tun{$x} with a gateway!\n";
} elseif (!isset($config['system']['disablevpnrules'])) {
$rule .="pass in quick on tun{$x} all keep state label \"let out anything from firewall host itself openvpn\"\n";
}
@@ -3055,7 +3055,7 @@ function create_firewall_outgoing_rules_to_itself() {
/* If the interface has a gateway we do not add a pass in rule. */
/* Some people use a TAP tunnel with public IP as a Multiwan interface */
if(interface_has_gateway("tap{$x}")) {
- $rule .= "# Not adding default pass in rule for interface $friendlytapif - tap{$x} with a gateway!";
+ $rule .= "# Not adding default pass in rule for interface $friendlytapif - tap{$x} with a gateway!\n";
} elseif (!isset($config['system']['disablevpnrules'])) {
$rule .="pass in quick on tap{$x} all keep state label \"let out anything from firewall host itself openvpn\"\n";
}
OpenPOWER on IntegriCloud