From 43c7e4f12b6584e578f79c71ac9bb7423af14238 Mon Sep 17 00:00:00 2001 From: Tom Eastep Date: Mon, 27 Sep 2010 15:56:22 -0700 Subject: [PATCH] Prevent random progress messages during compilation. Signed-off-by: Tom Eastep --- Shorewall/Perl/Shorewall/Config.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/Shorewall/Perl/Shorewall/Config.pm b/Shorewall/Perl/Shorewall/Config.pm index d90425d87..c170e9de9 100644 --- a/Shorewall/Perl/Shorewall/Config.pm +++ b/Shorewall/Perl/Shorewall/Config.pm @@ -1568,6 +1568,7 @@ sub do_open_file( $ ) { my $fname = $_[0]; open $currentfile, '<', $fname or fatal_error "Unable to open $fname: $!"; $currentlinenumber = 0; + $first_entry = 0; $currentfilename = $fname; }