From: Michael Vogt Date: Thu, 18 Nov 2010 13:32:44 +0000 (+0100) Subject: cmdline/apt-get.cc: download it all in one go X-Git-Tag: 0.8.11~6^2~6^2 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/6c6b2a3221f0a9432efd0080074b17c4e9d6a6ec cmdline/apt-get.cc: download it all in one go --- diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index febcab18c..a1a1b586d 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -2751,7 +2751,6 @@ bool DoDownload(CommandLine &CmdL) if (verset.empty() == true) return false; - bool result = true; pkgRecords Recs(Cache); pkgSourceList *SrcList = Cache.GetSourceList(); for (APT::VersionSet::const_iterator Ver = verset.begin(); @@ -2781,8 +2780,8 @@ bool DoDownload(CommandLine &CmdL) hash = HashString("md5", rec.MD5Hash()); // get the file new pkgAcqFile(&Fetcher, uri, hash.toStr(), (*Ver)->Size, descr, Pkg.Name(), "."); - result &= (Fetcher.Run() == pkgAcquire::Continue); } + bool result = (Fetcher.Run() == pkgAcquire::Continue); return result; }