Browse Source

More small fixes

Wichert Akkerman 25 years ago
parent
commit
233d1cbefe
1 changed files with 3 additions and 3 deletions
  1. 3 3
      scripts/dpkg-statoverride.pl

+ 3 - 3
scripts/dpkg-statoverride.pl

@@ -7,7 +7,7 @@ $admindir= "/var/lib/dpkg"; # This line modified by Makefile
 $version= '1.3.0'; # This line modified by Makefile
 $version= '1.3.0'; # This line modified by Makefile
 
 
 $verbose= 1;
 $verbose= 1;
-$force= 0;
+$doforce= 0;
 $doupdate= 0;
 $doupdate= 0;
 $mode= "";
 $mode= "";
 
 
@@ -50,9 +50,9 @@ while (@ARGV) {
 	} elsif (m/^--update$/) {
 	} elsif (m/^--update$/) {
 		$doupdate=1;
 		$doupdate=1;
 	} elsif (m/^--quiet$/) {
 	} elsif (m/^--quiet$/) {
-		$verbose=1;
+		$verbose=0;
 	} elsif (m/^--force$/) {
 	} elsif (m/^--force$/) {
-		$force=1;
+		$doforce=1;
 	} elsif (m/^--admindir$/) {
 	} elsif (m/^--admindir$/) {
 		@ARGV || &badusage("--admindir needs a directory argument");
 		@ARGV || &badusage("--admindir needs a directory argument");
 		$admindir= shift(@ARGV);
 		$admindir= shift(@ARGV);