diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2005-05-10 12:28:16 +0000 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2005-05-10 12:28:16 +0000 |
commit | f2152f036e11c633b54a9146665a47f7b980a355 (patch) | |
tree | 6064772576de8fbeea4fbc440124c31d98d4f6b3 /apt-pkg/deb/debindexfile.cc | |
parent | 8c9e3f04abd63331811ee4ffa6d1bd7c36bfb0f4 (diff) |
* make pinning on component work again (we just use the section, as apt-0.6 don't use per-section Release files anymore)
Diffstat (limited to 'apt-pkg/deb/debindexfile.cc')
-rw-r--r-- | apt-pkg/deb/debindexfile.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/deb/debindexfile.cc b/apt-pkg/deb/debindexfile.cc index f26265fff..ff8bce85d 100644 --- a/apt-pkg/deb/debindexfile.cc +++ b/apt-pkg/deb/debindexfile.cc @@ -24,7 +24,7 @@ #include <apt-pkg/strutl.h> #include <apt-pkg/acquire-item.h> #include <apt-pkg/debmetaindex.h> - + #include <sys/stat.h> /*}}}*/ @@ -290,7 +290,7 @@ bool debPackagesIndex::Merge(pkgCacheGenerator &Gen,OpProgress &Prog) const FileFd Rel(ReleaseFile,FileFd::ReadOnly); if (_error->PendingError() == true) return false; - Parser.LoadReleaseInfo(File,Rel); + Parser.LoadReleaseInfo(File,Rel,Section); } return true; |