From ed6fa9754dba590e92604e09013c1478ecd46443 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 29 Sep 2014 11:26:30 +0200 Subject: [PATCH] fix DestFile ext --- apt-pkg/acquire-item.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- 2.50.0