summaryrefslogtreecommitdiff
path: root/apt-pkg
diff options
context:
space:
mode:
authorMichael Vogt <mvo@ubuntu.com>2014-09-29 11:26:30 +0200
committerMichael Vogt <mvo@ubuntu.com>2014-09-29 11:26:30 +0200
commited6fa9754dba590e92604e09013c1478ecd46443 (patch)
tree69bb838d0061c4cd4acbba678ff56ff58288ab09 /apt-pkg
parente1bd768b762bd74221f9089133883723a7307f9b (diff)
fix DestFile ext
Diffstat (limited to 'apt-pkg')
-rw-r--r--apt-pkg/acquire-item.cc2
1 files changed, 1 insertions, 1 deletions
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();