From 34e59b066ec385af4738fa1d0e1df07e988117bd Mon Sep 17 00:00:00 2001 From: Tom Eastep Date: Tue, 23 Mar 2010 08:47:56 -0700 Subject: [PATCH] Fix minor bug in bridge interface handling. Signed-off-by: Tom Eastep --- Shorewall/Perl/Shorewall/Zones.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Shorewall/Perl/Shorewall/Zones.pm b/Shorewall/Perl/Shorewall/Zones.pm index d8eba7d1b..75de2233c 100644 --- a/Shorewall/Perl/Shorewall/Zones.pm +++ b/Shorewall/Perl/Shorewall/Zones.pm @@ -76,7 +76,7 @@ our @EXPORT = qw( NOTHING ); our @EXPORT_OK = qw( initialize ); -our $VERSION = '4.4_7'; +our $VERSION = '4.4_8'; # # IPSEC Option types @@ -926,7 +926,7 @@ sub process_interface( $ ) { if ( $options{bridge} ) { require_capability( 'PHYSDEV_MATCH', 'The "bridge" option', 's'); fatal_error "Bridges may not have wildcard names" if $wildcard; - $options{routeback} = 1; + $hostoptions{routeback} = $options{routeback} = 1; } $zoneref->{options}{in_out}{routeback} = 1 if $zoneref && $options{routeback};