summaryrefslogtreecommitdiff
path: root/apt-private
diff options
context:
space:
mode:
authorDavid Kalnischkies <david@kalnischkies.de>2016-12-31 00:09:11 +0100
committerJulian Andres Klode <jak@debian.org>2017-02-22 16:53:45 +0100
commitc0dc26456ba74da449eae11c04c3edb3b5f1e35e (patch)
treea534372e87e1bda031dc7b28bb98943c431791cc /apt-private
parentfec19de5e786564ed8699b38310f7d1a7c348c01 (diff)
use FindB instead of FindI for Debug::pkgAutoRemove
Again no practical difference, but for consistency a boolean option should really be accessed via a boolean method rather than an int especially if you happen to try setting the option to "true" … Gbp-Dch: Ignore (cherry picked from commit c15ba854b6736696f164e4d2c243a944e2d4006e)
Diffstat (limited to 'apt-private')
-rw-r--r--apt-private/private-install.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-private/private-install.cc b/apt-private/private-install.cc
index 761e4d175..62f4136af 100644
--- a/apt-private/private-install.cc
+++ b/apt-private/private-install.cc
@@ -396,7 +396,7 @@ bool InstallPackages(CacheFile &Cache,bool ShwKept,bool Ask, bool Safety)
/* Remove unused automatic packages */
bool DoAutomaticRemove(CacheFile &Cache)
{
- bool Debug = _config->FindI("Debug::pkgAutoRemove",false);
+ bool Debug = _config->FindB("Debug::pkgAutoRemove",false);
bool doAutoRemove = _config->FindB("APT::Get::AutomaticRemove", false);
bool hideAutoRemove = _config->FindB("APT::Get::HideAutoRemove");