From: Arch Librarian Date: Mon, 20 Sep 2004 16:51:53 +0000 (+0000) Subject: Fixed --force-yes bug X-Git-Tag: 0.7.24ubuntu1~1577 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/7a215bee41a8075d6afc6c1fdc919c9d32870059 Fixed --force-yes bug Author: jgg Date: 1998-12-05 04:36:10 GMT Fixed --force-yes bug --- diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index 49eca83ac..2ae16a00a 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: apt-get.cc,v 1.22 1998/12/05 04:30:34 jgg Exp $ +// $Id: apt-get.cc,v 1.23 1998/12/05 04:36:10 jgg Exp $ /* ###################################################################### apt-get - Cover for dpkg @@ -468,10 +468,10 @@ bool InstallPackages(CacheFile &Cache,bool ShwKept,bool Ask = true) ShowNew(c1out,Cache); if (ShwKept == true) ShowKept(c1out,Cache); - Fail |= ShowHold(c1out,Cache); + Fail |= !ShowHold(c1out,Cache); if (_config->FindB("APT::Get::Show-Upgraded",false) == true) ShowUpgraded(c1out,Cache); - Fail |= ShowEssential(c1out,Cache); + Fail |= !ShowEssential(c1out,Cache); Stats(c1out,Cache); // Sanity check