From: Anthony Minessale Date: Mon, 31 Aug 2015 16:05:36 +0000 (-0500) Subject: FS-7988 move -askall to -terse so old -askall behavior is default and old default... X-Git-Tag: v1.6.2~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0103206f9714c0448b9a34cfabb77a870c3e6623;p=thirdparty%2Ffreeswitch.git FS-7988 move -askall to -terse so old -askall behavior is default and old default is now -terse --- diff --git a/support-d/utils/filebug.pl b/support-d/utils/filebug.pl index 6da941e733..862f0139dd 100755 --- a/support-d/utils/filebug.pl +++ b/support-d/utils/filebug.pl @@ -77,7 +77,7 @@ GetOptions( 'type=s' => \$opts{type}, 'versions=s' => \$opts{versions}, 'noedit' => \$opts{noedit}, - 'askall' => \$opts{askall}, + 'terse' => \$opts{terse}, 'debug' => \$opts{debug}, ) or die "Usage: $0 -summary -desc [-debug] ....\n"; @@ -166,7 +166,7 @@ if (!$opts{hash}) { } } -if ($opts{askall}) { +if (!$opts{terse}) { $opts{project} = getfield("Project: ", $opts{project}); $opts{type} = getfield("Type: ", $opts{type}); $opts{versions} = getfield("Versions: ", $opts{versions});