diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2005-05-13 19:43:07 +0000 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2005-05-13 19:43:07 +0000 |
commit | 97234432dbd652bc13a419dc37fda1e5cd3622a5 (patch) | |
tree | 1b509e9a878e59895194b8e4df64352ee4d9c599 /apt-pkg/deb/debmetaindex.cc | |
parent | e82bdb118257ddea01a26f0c5503e06d17ae8794 (diff) |
* made the translation downloading work
Diffstat (limited to 'apt-pkg/deb/debmetaindex.cc')
-rw-r--r-- | apt-pkg/deb/debmetaindex.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/apt-pkg/deb/debmetaindex.cc b/apt-pkg/deb/debmetaindex.cc index 7f15fd2e1..9c7828d6a 100644 --- a/apt-pkg/deb/debmetaindex.cc +++ b/apt-pkg/deb/debmetaindex.cc @@ -157,6 +157,14 @@ bool debReleaseIndex::GetIndexes(pkgAcquire *Owner, bool GetAll) const ComputeIndexTargets(), new indexRecords (Dist)); + // Queue the translations + for (vector<const debSectionEntry *>::const_iterator I = SectionEntries.begin(); + I != SectionEntries.end(); I++) { + + debTranslationsIndex i = debTranslationsIndex(URI,Dist,(*I)->Section); + i.GetIndexes(Owner); + } + return true; } |