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;