mirror of
https://gitlab.com/shorewall/code.git
synced 2025-06-27 13:11:57 +02:00
Fix split_list1()
git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@9542 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
parent
08ba35ca29
commit
d1bbc2e820
@ -1174,7 +1174,11 @@ sub split_list1( $$ ) {
|
|||||||
for ( @list1 ) {
|
for ( @list1 ) {
|
||||||
if ( /\(/ ) {
|
if ( /\(/ ) {
|
||||||
fatal_error "Invalid $type list ($list)" if $element;
|
fatal_error "Invalid $type list ($list)" if $element;
|
||||||
|
if ( /\)/ ) {
|
||||||
|
push @list2 , $_;
|
||||||
|
} else {
|
||||||
$element = $_;
|
$element = $_;
|
||||||
|
}
|
||||||
} elsif ( /\)$/ ) {
|
} elsif ( /\)$/ ) {
|
||||||
fatal_error "Invalid $type list ($list)" unless $element;
|
fatal_error "Invalid $type list ($list)" unless $element;
|
||||||
push @list2, join ',', $element, $_;
|
push @list2, join ',', $element, $_;
|
||||||
|
@ -4,6 +4,8 @@ Changes in Shorewall 4.3.6
|
|||||||
|
|
||||||
2) Make 'dump' display the raw table. Fix shorewall6 dump anomalies.
|
2) Make 'dump' display the raw table. Fix shorewall6 dump anomalies.
|
||||||
|
|
||||||
|
3) Fix split_list1()
|
||||||
|
|
||||||
Changes in Shorewall 4.3.5
|
Changes in Shorewall 4.3.5
|
||||||
|
|
||||||
1) Remove support for shorewall-shell.
|
1) Remove support for shorewall-shell.
|
||||||
|
@ -33,6 +33,9 @@ Problems corrected in 4.3.6
|
|||||||
To your /etc/shorewall*/started, /etc/shorewall*/stopped and
|
To your /etc/shorewall*/started, /etc/shorewall*/stopped and
|
||||||
/etc/shorewall*/restored files.
|
/etc/shorewall*/restored files.
|
||||||
|
|
||||||
|
3) If nets=(<single address>) was specified in
|
||||||
|
/etc/shorewall/interfaces then the specification was ignored.
|
||||||
|
|
||||||
Known Problems Remaiining:
|
Known Problems Remaiining:
|
||||||
|
|
||||||
None.
|
None.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user