From 89a6d7e5db45666d6c5d8eabceab3fd46d99e024 Mon Sep 17 00:00:00 2001 From: Tom Eastep Date: Mon, 17 Aug 2009 10:45:46 -0700 Subject: [PATCH] Tweak initialization comments --- Shorewall/Perl/Shorewall/Actions.pm | 4 ++-- Shorewall/Perl/Shorewall/Chains.pm | 4 ++-- Shorewall/Perl/Shorewall/Config.pm | 4 ++-- Shorewall/Perl/Shorewall/IPAddrs.pm | 4 ++-- Shorewall/Perl/Shorewall/Providers.pm | 4 ++-- Shorewall/Perl/Shorewall/Proxyarp.pm | 4 ++-- Shorewall/Perl/Shorewall/Rules.pm | 4 ++-- Shorewall/Perl/Shorewall/Tc.pm | 4 ++-- Shorewall/Perl/Shorewall/Zones.pm | 4 ++-- 9 files changed, 18 insertions(+), 18 deletions(-) diff --git a/Shorewall/Perl/Shorewall/Actions.pm b/Shorewall/Perl/Shorewall/Actions.pm index 0313a8db9..075f73851 100644 --- a/Shorewall/Perl/Shorewall/Actions.pm +++ b/Shorewall/Perl/Shorewall/Actions.pm @@ -94,11 +94,11 @@ our $macro_commands = { COMMENT => 0, FORMAT => 2 }; # Rather than initializing globals in an INIT block or during declaration, # we initialize them in a function. This is done for two reasons: # -# 1. Proper initialization usually depends on the address family which isn't +# 1. Proper initialization depends on the address family which isn't # known until the compiler has started. # # 2. The compiler can run multiple times in the same process so it has to be -# able to re-initialize all of its dependent modules. +# able to re-initialize its dependent modules' state. # sub initialize( $ ) { diff --git a/Shorewall/Perl/Shorewall/Chains.pm b/Shorewall/Perl/Shorewall/Chains.pm index 96d4588c5..83d91e2e1 100644 --- a/Shorewall/Perl/Shorewall/Chains.pm +++ b/Shorewall/Perl/Shorewall/Chains.pm @@ -301,11 +301,11 @@ sub initialize_chain_table(); # Rather than initializing globals in an INIT block or during declaration, # we initialize them in a function. This is done for two reasons: # -# 1. Proper initialization usually depends on the address family which isn't +# 1. Proper initialization depends on the address family which isn't # known until the compiler has started. # # 2. The compiler can run multiple times in the same process so it has to be -# able to re-initialize all of its dependent modules. +# able to re-initialize its dependent modules' state. # sub initialize( $ ) { $family = shift; diff --git a/Shorewall/Perl/Shorewall/Config.pm b/Shorewall/Perl/Shorewall/Config.pm index 81dfe6e14..ea7b281df 100644 --- a/Shorewall/Perl/Shorewall/Config.pm +++ b/Shorewall/Perl/Shorewall/Config.pm @@ -288,11 +288,11 @@ our %validlevels; # Valid log levels. # Rather than initializing globals in an INIT block or during declaration, # we initialize them in a function. This is done for two reasons: # -# 1. Proper initialization usually depends on the address family which isn't +# 1. Proper initialization depends on the address family which isn't # known until the compiler has started. # # 2. The compiler can run multiple times in the same process so it has to be -# able to re-initialize all of its dependent modules. +# able to re-initialize its dependent modules' state. # sub initialize( $ ) { $family = shift; diff --git a/Shorewall/Perl/Shorewall/IPAddrs.pm b/Shorewall/Perl/Shorewall/IPAddrs.pm index 6acc98b22..592315ce6 100644 --- a/Shorewall/Perl/Shorewall/IPAddrs.pm +++ b/Shorewall/Perl/Shorewall/IPAddrs.pm @@ -105,11 +105,11 @@ our @rfc1918_networks = ( "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16" ); # Rather than initializing globals in an INIT block or during declaration, # we initialize them in a function. This is done for two reasons: # -# 1. Proper initialization usually depends on the address family which isn't +# 1. Proper initialization depends on the address family which isn't # known until the compiler has started. # # 2. The compiler can run multiple times in the same process so it has to be -# able to re-initialize all of its dependent modules. +# able to re-initialize its dependent modules' state. # sub initialize( $ ) { $family = shift; diff --git a/Shorewall/Perl/Shorewall/Providers.pm b/Shorewall/Perl/Shorewall/Providers.pm index 3fc5c660b..962120a7b 100644 --- a/Shorewall/Perl/Shorewall/Providers.pm +++ b/Shorewall/Perl/Shorewall/Providers.pm @@ -65,11 +65,11 @@ use constant { ROUTEMARKED_SHARED => 1, ROUTEMARKED_UNSHARED => 2 }; # Rather than initializing globals in an INIT block or during declaration, # we initialize them in a function. This is done for two reasons: # -# 1. Proper initialization usually depends on the address family which isn't +# 1. Proper initialization depends on the address family which isn't # known until the compiler has started. # # 2. The compiler can run multiple times in the same process so it has to be -# able to re-initialize all of its dependent modules. +# able to re-initialize its dependent modules' state. # sub initialize( $ ) { $family = shift; diff --git a/Shorewall/Perl/Shorewall/Proxyarp.pm b/Shorewall/Perl/Shorewall/Proxyarp.pm index 7c40383bf..4bcad0888 100644 --- a/Shorewall/Perl/Shorewall/Proxyarp.pm +++ b/Shorewall/Perl/Shorewall/Proxyarp.pm @@ -45,11 +45,11 @@ our $family; # Rather than initializing globals in an INIT block or during declaration, # we initialize them in a function. This is done for two reasons: # -# 1. Proper initialization usually depends on the address family which isn't +# 1. Proper initialization depends on the address family which isn't # known until the compiler has started. # # 2. The compiler can run multiple times in the same process so it has to be -# able to re-initialize all of its dependent modules. +# able to re-initialize its dependent modules' state. # sub initialize( $ ) { $family = shift; diff --git a/Shorewall/Perl/Shorewall/Rules.pm b/Shorewall/Perl/Shorewall/Rules.pm index 1d47fa2cf..94fccb535 100644 --- a/Shorewall/Perl/Shorewall/Rules.pm +++ b/Shorewall/Perl/Shorewall/Rules.pm @@ -66,11 +66,11 @@ my %rules_commands = ( COMMENT => 0, # Rather than initializing globals in an INIT block or during declaration, # we initialize them in a function. This is done for two reasons: # -# 1. Proper initialization usually depends on the address family which isn't +# 1. Proper initialization depends on the address family which isn't # known until the compiler has started. # # 2. The compiler can run multiple times in the same process so it has to be -# able to re-initialize all of its dependent modules. +# able to re-initialize its dependent modules' state. # sub initialize( $ ) { $family = shift; diff --git a/Shorewall/Perl/Shorewall/Tc.pm b/Shorewall/Perl/Shorewall/Tc.pm index 26a175cd1..cd552d35c 100644 --- a/Shorewall/Perl/Shorewall/Tc.pm +++ b/Shorewall/Perl/Shorewall/Tc.pm @@ -205,11 +205,11 @@ our $family; # Rather than initializing globals in an INIT block or during declaration, # we initialize them in a function. This is done for two reasons: # -# 1. Proper initialization usually depends on the address family which isn't +# 1. Proper initialization depends on the address family which isn't # known until the compiler has started. # # 2. The compiler can run multiple times in the same process so it has to be -# able to re-initialize all of its dependent modules. +# able to re-initialize its dependent modules' state. # sub initialize( $ ) { $family = shift; diff --git a/Shorewall/Perl/Shorewall/Zones.pm b/Shorewall/Perl/Shorewall/Zones.pm index 252f0810d..d12cf423a 100644 --- a/Shorewall/Perl/Shorewall/Zones.pm +++ b/Shorewall/Perl/Shorewall/Zones.pm @@ -177,11 +177,11 @@ our %validhostoptions; # Rather than initializing globals in an INIT block or during declaration, # we initialize them in a function. This is done for two reasons: # -# 1. Proper initialization usually depends on the address family which isn't +# 1. Proper initialization depends on the address family which isn't # known until the compiler has started. # # 2. The compiler can run multiple times in the same process so it has to be -# able to re-initialize all of its dependent modules. +# able to re-initialize its dependent modules' state. # sub initialize( $ ) { $family = shift;