From 6c6b2a3221f0a9432efd0080074b17c4e9d6a6ec Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Thu, 18 Nov 2010 14:32:44 +0100 Subject: cmdline/apt-get.cc: download it all in one go --- cmdline/apt-get.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'cmdline') 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; } -- cgit v1.2.3