diff --git a/STABLE2/changelog.txt b/STABLE2/changelog.txt index 166a0594e..ecc929c67 100644 --- a/STABLE2/changelog.txt +++ b/STABLE2/changelog.txt @@ -50,3 +50,7 @@ Changes in 2.0.8 1) Removed dead code from process_actions2() 2) Corrected read command in process_actions2() (userspec) + +Changes in 2.0.9 + +1) Corrected setup_tc1() handling of the PROTO column. diff --git a/STABLE2/firewall b/STABLE2/firewall index 28fd28713..8de9d460b 100755 --- a/STABLE2/firewall +++ b/STABLE2/firewall @@ -2075,6 +2075,8 @@ process_tc_rule() fi [ "x$dest" = "x-" ] || r="${r}-d $dest " + [ "x$proto" = "x-" ] && proto=all + [ "x$proto" = "x" ] && proto=all [ "$proto" = "all" ] || r="${r}-p $proto " [ "x$port" = "x-" ] || r="${r}--dport $port " [ "x$sport" = "x-" ] || r="${r}--sport $sport " diff --git a/STABLE2/releasenotes.txt b/STABLE2/releasenotes.txt index 1d46a48b7..6aea47edf 100644 --- a/STABLE2/releasenotes.txt +++ b/STABLE2/releasenotes.txt @@ -119,6 +119,12 @@ Problems Corrected in version 2.0.8 1) User/group restricted rules now work in actions. +----------------------------------------------------------------------- +Problems Corrected in version 2.0.9 + +1) Previously, an empty PROTO column or a value of "all" in that column + would cause errors when processing the /etc/shorewall/tcrules file. +