On 12/24/2012 09:04 AM, Steven Jan Springl wrote: > Issuing 'shorewall update -D' changes 'COMMENT' lines in the accounting file > to > '?COMMENT', which then produces the following error message: > > ERROR: ?COMMENT is not allowed in this file /etc/shorewall2/accounting (line > 35) >
The attached patch corrects the problem. Thanks Steven, -Tom -- Tom Eastep \ When I die, I want to go like my Grandfather who Shoreline, \ died peacefully in his sleep. Not screaming like Washington, USA \ all of the passengers in his car http://shorewall.net \________________________________________________
diff --git a/Shorewall/Perl/Shorewall/Accounting.pm b/Shorewall/Perl/Shorewall/Accounting.pm
index 8d84244..22e1931 100644
--- a/Shorewall/Perl/Shorewall/Accounting.pm
+++ b/Shorewall/Perl/Shorewall/Accounting.pm
@@ -417,7 +417,7 @@ sub process_accounting_rule( ) {
sub setup_accounting() {
- if ( my $fn = open_file 'accounting' ) {
+ if ( my $fn = open_file 'accounting', 1, 1 ) {
first_entry "$doing $fn...";
signature.asc
Description: OpenPGP digital signature
------------------------------------------------------------------------------ LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial Remotely access PCs and mobile devices and provide instant support Improve your efficiency, and focus on delivering more value-add services Discover what IT Professionals Know. Rescue delivers http://p.sf.net/sfu/logmein_12329d2d
_______________________________________________ Shorewall-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/shorewall-devel
