From f8e04b4110b2d712ee720238330c0b57e5e8f2f7 Mon Sep 17 00:00:00 2001 From: Tom Eastep Date: Fri, 31 Dec 2010 14:12:57 -0800 Subject: [PATCH] Change a couple of compiler progress messages --- Shorewall/Perl/Shorewall/Rules.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Shorewall/Perl/Shorewall/Rules.pm b/Shorewall/Perl/Shorewall/Rules.pm index 0cf4c0288..9f10e987d 100644 --- a/Shorewall/Perl/Shorewall/Rules.pm +++ b/Shorewall/Perl/Shorewall/Rules.pm @@ -624,7 +624,7 @@ sub process_action( $) { fatal_error "Missing Action File ($actionfile)" unless -f $actionfile; - progress_message2 "Processing $actionfile for chain $chainref->{name}..."; + progress_message2 "$doing $actionfile for chain $chainref->{name}..."; push_open $actionfile; @@ -727,7 +727,7 @@ sub process_actions1() { # This function creates and populates the chains for the policy actions. # sub process_actions2 () { - progress_message2 "Pre-processing policy actions..."; + progress_message2 "$doing policy actions..."; for ( map normalize_action_name $_, ( grep ! ( $targets{$_} & BUILTIN ), keys %policy_actions ) ) { if ( my $ref = use_action( $_ ) ) {