]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/deb/debmetaindex.cc
Sync with apt--main--0--patch-78
[apt.git] / apt-pkg / deb / debmetaindex.cc
index 526c8c0b242f28ea4a7f602e43f92e9bdfa245b9..7f15fd2e1f17ea4ddd41d2b6cd135a2bf9c03390 100644 (file)
@@ -177,11 +177,14 @@ vector <pkgIndexFile *> *debReleaseIndex::GetIndexFiles()
 
    Indexes = new vector <pkgIndexFile*>;
    for (vector<const debSectionEntry *>::const_iterator I = SectionEntries.begin(); 
-       I != SectionEntries.end(); I++)
+       I != SectionEntries.end(); I++) {
       if ((*I)->IsSrc)
          Indexes->push_back(new debSourcesIndex (URI, Dist, (*I)->Section, IsTrusted()));
       else 
          Indexes->push_back(new debPackagesIndex (URI, Dist, (*I)->Section, IsTrusted()));
+      Indexes->push_back(new debTranslationsIndex(URI,Dist,(*I)->Section));
+   }
+
    return Indexes;
 }