From 20cee7649e78f36b096c7f0d1a58545628001693 Mon Sep 17 00:00:00 2001 From: Tom Eastep Date: Mon, 4 Jul 2011 13:32:32 -0700 Subject: [PATCH] Change quotes in action.Broadcast --- Shorewall/action.Broadcast | 6 +++--- Shorewall6/action.Broadcast | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Shorewall/action.Broadcast b/Shorewall/action.Broadcast index 2eda6bc9a..3bc046232 100644 --- a/Shorewall/action.Broadcast +++ b/Shorewall/action.Broadcast @@ -51,9 +51,9 @@ if ( have_capability( 'ADDRTYPE' ) ) { log_rule_limit $level, $chainref, 'dropBcast' , $action, '', $tag, 'add', ' -m addrtype --dst-type ANYCAST '; } - add_jump $chainref, $target, 0, "-m addrtype --dst-type BROADCAST "; - add_jump $chainref, $target, 0, "-m addrtype --dst-type MULTICAST "; - add_jump $chainref, $target, 0, "-m addrtype --dst-type ANYCAST "; + add_jump $chainref, $target, 0, '-m addrtype --dst-type BROADCAST '; + add_jump $chainref, $target, 0, '-m addrtype --dst-type MULTICAST '; + add_jump $chainref, $target, 0, '-m addrtype --dst-type ANYCAST '; } else { add_commands $chainref, 'for address in $ALL_BCASTS; do'; incr_cmd_level $chainref; diff --git a/Shorewall6/action.Broadcast b/Shorewall6/action.Broadcast index ee86dfaea..10d2e4252 100644 --- a/Shorewall6/action.Broadcast +++ b/Shorewall6/action.Broadcast @@ -51,9 +51,9 @@ if ( have_capability( 'ADDRTYPE' ) ) { log_rule_limit $level, $chainref, 'dropBcast' , $action, '', $tag, 'add', ' -m addrtype --dst-type ANYCAST '; } - add_jump $chainref, $target, 0, "-m addrtype --dst-type BROADCAST "; - add_jump $chainref, $target, 0, "-m addrtype --dst-type MULTICAST "; - add_jump $chainref, $target, 0, "-m addrtype --dst-type ANYCAST "; + add_jump $chainref, $target, 0, '-m addrtype --dst-type BROADCAST '; + add_jump $chainref, $target, 0, '-m addrtype --dst-type MULTICAST '; + add_jump $chainref, $target, 0, '-m addrtype --dst-type ANYCAST '; } else { add_commands $chainref, 'for address in $ALL_ACASTS; do'; incr_cmd_level $chainref;