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 69745caa41
commit f1eafdc314
No known key found for this signature in database
GPG Key ID: 96E6B3F2423A4D10

View File

@ -428,7 +428,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;
@ -2275,7 +2275,7 @@ sub invalid_chain($$) {
# Name of the untracked chain between an ordered pair of zones
#
sub untracked_chain($$) {
'&' . &rules_chain(@_);
'=' . &rules_chain(@_);
}
#