From: Michael Vogt Date: Thu, 14 Jun 2007 09:05:18 +0000 (+0200) Subject: * apt-pkg/depcache.cc: X-Git-Tag: 0.7.24ubuntu1~182^2 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/8a7bd39bdc6e993cd64c639e9e535a380846c2e9?hp=--cc * apt-pkg/depcache.cc: - merge missing bugfix from ubuntu branch --- 8a7bd39bdc6e993cd64c639e9e535a380846c2e9 diff --git a/apt-pkg/depcache.cc b/apt-pkg/depcache.cc index fe981ea76..5979f8379 100644 --- a/apt-pkg/depcache.cc +++ b/apt-pkg/depcache.cc @@ -1150,7 +1150,7 @@ bool pkgDepCache::Policy::IsImportantDep(DepIterator Dep) string s = _config->Find("APT::Install-Recommends-Section",""); if(s.size() > 0) { - const char *sec = Dep.TargetPkg().Section(); + const char *sec = Dep.ParentVer().Section(); if (sec && strcmp(sec, s.c_str()) == 0) return true; }