summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2010-03-12 15:28:24 +0100
committerJulian Andres Klode <jak@debian.org>2010-03-12 15:28:24 +0100
commitd59a67ff100ef7006376a14ceef833a460c2f404 (patch)
tree73ef7831cc7c3dbb8fa813bda43f8adcaaec9f3f
parentf23e1e940214c7abbf87c28bc71a5d37d117aa57 (diff)
apt-inst/contrib/arfile.h: Add public ARArchive::Members() which returns the list of members.
-rw-r--r--apt-inst/contrib/arfile.h1
-rw-r--r--debian/changelog2
2 files changed, 3 insertions, 0 deletions
diff --git a/apt-inst/contrib/arfile.h b/apt-inst/contrib/arfile.h
index 96e18bc60..7f6c68302 100644
--- a/apt-inst/contrib/arfile.h
+++ b/apt-inst/contrib/arfile.h
@@ -39,6 +39,7 @@ class ARArchive
// Locate a member by name
const Member *FindMember(const char *Name) const;
+ inline Member *Members() { return List; }
ARArchive(FileFd &File);
~ARArchive();
diff --git a/debian/changelog b/debian/changelog
index faeac0e2b..68c86479f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,8 @@ apt (0.7.26~exp3) UNRELEASED; urgency=low
[ Julian Andres Klode ]
* cmdline/apt-mark:
- Use the new python-apt API (and conflict with python-apt << 0.7.93.2).
+ * apt-inst/contrib/arfile.h:
+ - Add public ARArchive::Members() which returns the list of members.
-- Christian Perrier <bubulle@debian.org> Wed, 24 Feb 2010 22:13:50 +0100