From ae3392646195125031b43ac52678e237c65cfc06 Mon Sep 17 00:00:00 2001 From: teastep Date: Sat, 23 Jun 2007 21:15:53 +0000 Subject: [PATCH] Shorten option from debugging to debug git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@6658 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb --- Shorewall-perl/compiler.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Shorewall-perl/compiler.pl b/Shorewall-perl/compiler.pl index c5c11cd92..e6b7f919c 100755 --- a/Shorewall-perl/compiler.pl +++ b/Shorewall-perl/compiler.pl @@ -31,7 +31,7 @@ # --verbosity= # Set VERBOSITY # --directory= # Directory where configuration resides (default is /etc/shorewall) # --timestamp # Timestamp all progress messages -# --debugging # Print stack trace on warnings and fatal error. +# --debug # Print stack trace on warnings and fatal error. # # Default values for compiler options are given in environmental variables as follows: # @@ -41,7 +41,7 @@ # --export EXPORT # --directory SHOREWALL_DIR # --timestamp TIMESTAMP -# --debugging +# --debug # use strict; use lib '/usr/share/shorewall-perl'; @@ -72,7 +72,7 @@ my $result = GetOptions('export' => \$export, 'v=i' => \$verbose, 'timestamp' => \$timestamp, 't' => \$timestamp, - 'debugging' => \$debug + 'debug' => \$debug ); usage unless $result && @ARGV < 2;