diff options
author | David Kalnischkies <david@kalnischkies.de> | 2014-06-17 19:05:53 +0200 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2014-06-18 11:17:18 +0200 |
commit | 172947cd7dc5c88c94c6ad269dc6c6be002ee958 (patch) | |
tree | 7d7bf86d31cf3f2fa8a1fae2d51d02aa3c6b0081 /apt-private/private-install.h | |
parent | d39d7f885d61bfe296c131c83bdc042a2ab6b0d7 (diff) |
do not call resolver twice on (dist-)upgrade
Diffstat (limited to 'apt-private/private-install.h')
-rw-r--r-- | apt-private/private-install.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-private/private-install.h b/apt-private/private-install.h index 828163e40..8daa4a776 100644 --- a/apt-private/private-install.h +++ b/apt-private/private-install.h @@ -21,8 +21,8 @@ class pkgProblemResolver; APT_PUBLIC bool DoInstall(CommandLine &Cmd); bool DoCacheManipulationFromCommandLine(CommandLine &CmdL, CacheFile &Cache, - std::map<unsigned short, APT::VersionSet> &verset); -bool DoCacheManipulationFromCommandLine(CommandLine &CmdL, CacheFile &Cache); + std::map<unsigned short, APT::VersionSet> &verset, int UpgradeMode); +bool DoCacheManipulationFromCommandLine(CommandLine &CmdL, CacheFile &Cache, int UpgradeMode); APT_PUBLIC bool InstallPackages(CacheFile &Cache,bool ShwKept,bool Ask = true, bool Safety = true); |