summaryrefslogtreecommitdiff
path: root/apt-pkg/deb/debindexfile.cc
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@debian.org>2005-03-23 22:38:53 +0000
committerOtavio Salvador <otavio@debian.org>2005-03-23 22:38:53 +0000
commita7a5b0d941a8e56a1be2822226a5a81cd94d6ea6 (patch)
treea595c37733dbf60a9ba61e4e63ea0414f5716830 /apt-pkg/deb/debindexfile.cc
parentd9f5f2883b9b4f3487ec98a626571bd83329d862 (diff)
Fix problems due APT and structural changes.
- apt-pkg/acquire-item.cc: pass the expected md5 and compressed extenssion as empty in pkgAcqIndexTrans::pkgAcqIndexTrans(...) constructor; - apt-pkg/deb/debindexfile.cc: identify translation files as trusted; - apt-pkg/deb/debmetaindex.cc: change the way it's queue the translation file due a change in APT structure did in 0.6 branch;
Diffstat (limited to 'apt-pkg/deb/debindexfile.cc')
-rw-r--r--apt-pkg/deb/debindexfile.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/deb/debindexfile.cc b/apt-pkg/deb/debindexfile.cc
index 1d8c1e8ec..4113137eb 100644
--- a/apt-pkg/deb/debindexfile.cc
+++ b/apt-pkg/deb/debindexfile.cc
@@ -324,7 +324,7 @@ pkgCache::PkgFileIterator debPackagesIndex::FindInCache(pkgCache &Cache) const
// ---------------------------------------------------------------------
/* */
debTranslationsIndex::debTranslationsIndex(string URI,string Dist,string Section) :
- URI(URI), Dist(Dist), Section(Section)
+ pkgIndexFile(true), URI(URI), Dist(Dist), Section(Section)
{
}
/*}}}*/