From: Michael Vogt Date: Mon, 29 Sep 2014 09:26:30 +0000 (+0200) Subject: fix DestFile ext X-Git-Tag: 1.1.exp4~6^2~35 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/ed6fa9754dba590e92604e09013c1478ecd46443?ds=inline fix DestFile ext --- diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index bfa0eb4fc..3d6924847 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -1112,7 +1112,7 @@ void pkgAcqIndex::ReverifyAfterIMS() // adjust DestFile if its compressed on disk if (_config->FindB("Acquire::GzipIndexes",false) == true) - DestFile += compExt; + DestFile += '.' + compExt; // copy FinalFile into partial/ so that we check the hash again string FinalFile = GetFinalFilename();