diff options
author | jbj <devnull@localhost> | 1999-12-30 17:06:53 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 1999-12-30 17:06:53 +0000 |
commit | a718761d7ec7ffc9e136c1372e8139beb910c616 (patch) | |
tree | 474a91cba2eed54c72f86cfc1e5681347ffe7c07 /python | |
parent | b325535ff19dbc77a43e42808ffeb31c794e76bd (diff) | |
download | rpm-a718761d7ec7ffc9e136c1372e8139beb910c616.tar.gz rpm-a718761d7ec7ffc9e136c1372e8139beb910c616.tar.bz2 rpm-a718761d7ec7ffc9e136c1372e8139beb910c616.zip |
Force python arrays for DIRNAMES/BASENAMES/DIRINDEXES.
CVS patchset: 3498
CVS date: 1999/12/30 17:06:53
Diffstat (limited to 'python')
-rw-r--r-- | python/Makefile.in | 2 | ||||
-rw-r--r-- | python/rpmmodule.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/python/Makefile.in b/python/Makefile.in index ea91501b2..c50f31084 100644 --- a/python/Makefile.in +++ b/python/Makefile.in @@ -92,7 +92,6 @@ INSTOBJEXT = @INSTOBJEXT@ INTLDEPS = @INTLDEPS@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ -LD = @LD@ LDFLAGS_STATIC = @LDFLAGS_STATIC@ LIBMISC = @LIBMISC@ LIBOBJS = @LIBOBJS@ @@ -108,7 +107,6 @@ MKDIR = @MKDIR@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ -NM = @NM@ OBJDUMP = @OBJDUMP@ PACKAGE = @PACKAGE@ PGPBIN = @PGPBIN@ diff --git a/python/rpmmodule.c b/python/rpmmodule.c index 509cae34c..988513254 100644 --- a/python/rpmmodule.c +++ b/python/rpmmodule.c @@ -879,6 +879,9 @@ static PyObject * hdrSubscript(hdrObject * s, PyObject * item) { switch (tag) { case RPMTAG_OLDFILENAMES: + case RPMTAG_BASENAMES: + case RPMTAG_DIRNAMES: + case RPMTAG_DIRINDEXES: case RPMTAG_FILESIZES: case RPMTAG_FILESTATES: case RPMTAG_FILEMODES: |