From 85b5fb2e45a8f7500cf37db256eeef3fd706a8ba Mon Sep 17 00:00:00 2001 From: teastep Date: Tue, 17 Apr 2007 17:57:39 +0000 Subject: [PATCH] Fix idiotic bug in Config.pm git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@5980 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb --- Shorewall-perl/Shorewall/Config.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shorewall-perl/Shorewall/Config.pm b/Shorewall-perl/Shorewall/Config.pm index 459d4fd50..2421b3d7c 100644 --- a/Shorewall-perl/Shorewall/Config.pm +++ b/Shorewall-perl/Shorewall/Config.pm @@ -741,7 +741,7 @@ sub get_configuration( $ ) { $config{IPTABLES} = mywhich 'iptables'; fatal_error "Can't find iptables executable" unless $config{IPTABLES}; } else { - fatal_error "\$IPTABLES=$capabilities{IPTABLES} does not exist or is not executable" unless -x $capabilities{IPTABLES}; + fatal_error "\$IPTABLES=$capabilities{IPTABLES} does not exist or is not executable" unless -x $config{IPTABLES}; } load_kernel_modules;