summaryrefslogtreecommitdiff
path: root/apt-pkg/acquire-item.cc
diff options
context:
space:
mode:
authorнаб <nabijaczleweli@nabijaczleweli.xyz>2025-01-23 19:33:57 +0100
committerJulian Andres Klode <julian.klode@canonical.com>2025-02-14 19:45:12 +0100
commit2499d9ff0c55a445a62643028a9d3bc9faf1195a (patch)
tree1bab22e439296982bb4cc380a2420a9d805d5a7a /apt-pkg/acquire-item.cc
parent4f6d379124bc51a09608fa3f45d66713f927b959 (diff)
string{=> _view} flExtension(string{=> _view})
Diffstat (limited to 'apt-pkg/acquire-item.cc')
-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 afd81b944..7e0dc25d2 100644
--- a/apt-pkg/acquire-item.cc
+++ b/apt-pkg/acquire-item.cc
@@ -3498,7 +3498,7 @@ pkgAcqArchive::pkgAcqArchive(pkgAcquire *const Owner, pkgSourceList *const Sourc
StoreFilename = QuoteString(Version.ParentPkg().Name(), "_:") + '_' +
QuoteString(Version.VerStr(), "_:") + '_' +
QuoteString(Version.Arch(), "_:.") +
- "." + flExtension(poolfilename);
+ '.' += flExtension(poolfilename);
Desc.URI = Index->ArchiveURI(poolfilename);
Desc.Description = Index->ArchiveInfo(Version);