diff --git a/STABLE2/changelog.txt b/STABLE2/changelog.txt index 52958a7a5..35522d62f 100644 --- a/STABLE2/changelog.txt +++ b/STABLE2/changelog.txt @@ -2,6 +2,8 @@ Changes in 2.2.5 1) Correct behavior of PKTTYPE=No +2) Fixed typo in the tunnel script. + Changes in 2.2.4 1) Added support for UPnP diff --git a/STABLE2/releasenotes.txt b/STABLE2/releasenotes.txt index d60b6aab5..f9a4965cd 100644 --- a/STABLE2/releasenotes.txt +++ b/STABLE2/releasenotes.txt @@ -6,6 +6,9 @@ Problems corrected in version 2.2.5 1) Previously, if PKTTYPE=No in shorewall.conf then pkttype match would still be used if the kernel supported it. +2) A typo in the 'tunnel' script has been corrected (Thanks to Patrik + Varmecký). + ----------------------------------------------------------------------- Problems corrected in version 2.2.4 diff --git a/STABLE2/tunnel b/STABLE2/tunnel index cd84d7806..5aedabbca 100755 --- a/STABLE2/tunnel +++ b/STABLE2/tunnel @@ -108,7 +108,7 @@ do_start() { case $tunnel_type in gre) - ip tunnel add $tunnel mode gre remote $gateway local $myrealip ttl 255 ${key:+key $key) + ip tunnel add $tunnel mode gre remote $gateway local $myrealip ttl 255 ${key:+key $key} ;; *) ip tunnel add $tunnel mode ipip remote $gateway