summaryrefslogtreecommitdiff
path: root/apt-pkg
diff options
context:
space:
mode:
authorDavid Kalnischkies <kalnischkies@gmail.com>2011-03-25 20:06:40 +0100
committerDavid Kalnischkies <kalnischkies@gmail.com>2011-03-25 20:06:40 +0100
commite548ae1c69c101f2a0b610fd2bf7b337f22fb09e (patch)
treeda16975d0fdd2fb79c15f3f563218511da6c3a20 /apt-pkg
parentfcaf14fe20f743549ce968bdd2f511684ceb2394 (diff)
* apt-pkg/depcache.cc:
- remove pseudo handling leftover from SetReInstall
Diffstat (limited to 'apt-pkg')
-rw-r--r--apt-pkg/depcache.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/apt-pkg/depcache.cc b/apt-pkg/depcache.cc
index 46fbc9e58..1c89bd32f 100644
--- a/apt-pkg/depcache.cc
+++ b/apt-pkg/depcache.cc
@@ -1252,11 +1252,6 @@ void pkgDepCache::SetReInstall(PkgIterator const &Pkg,bool To)
AddStates(Pkg);
AddSizes(Pkg);
-
- if (unlikely(Pkg.CurrentVer().end() == true))
- return;
-
- SetReInstall(Pkg.Group().FindPkg("all"), To);
}
/*}}}*/
// DepCache::SetCandidateVersion - Change the candidate version /*{{{*/