From 233d1cbefe0916e27e1848dbe604c43eea3ef8df Mon Sep 17 00:00:00 2001 From: Wichert Akkerman Date: Thu, 30 Nov 2000 20:55:34 +0000 Subject: [PATCH] More small fixes --- scripts/dpkg-statoverride.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/dpkg-statoverride.pl b/scripts/dpkg-statoverride.pl index d7e3118f..b41391fc 100755 --- a/scripts/dpkg-statoverride.pl +++ b/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 $verbose= 1; -$force= 0; +$doforce= 0; $doupdate= 0; $mode= ""; @@ -50,9 +50,9 @@ while (@ARGV) { } elsif (m/^--update$/) { $doupdate=1; } elsif (m/^--quiet$/) { - $verbose=1; + $verbose=0; } elsif (m/^--force$/) { - $force=1; + $doforce=1; } elsif (m/^--admindir$/) { @ARGV || &badusage("--admindir needs a directory argument"); $admindir= shift(@ARGV); -- 2.39.5