Use '=' rather than '&' to create UNTRACKED rule chains.

Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
Tom Eastep 2018-08-01 13:48:29 -07:00
parent ec21b03c5b
commit 7c31f70dc8
No known key found for this signature in database
GPG Key ID: 96E6B3F2423A4D10

View File

@ -425,7 +425,7 @@ our $VERSION = 'MODULEVERSION';
# Established - ^<z1-z2>
# Related - +<z1-z2>
# Invalid - _<z1-z2>
# Untracked - &<z1-z2>
# Untracked - =<z1-z2>
#
our %chain_table;
our $raw_table;
@ -2269,7 +2269,7 @@ sub invalid_chain($$) {
# Name of the untracked chain between an ordered pair of zones
#
sub untracked_chain($$) {
'&' . &rules_chain(@_);
'=' . &rules_chain(@_);
}
#