diff options
author | msw <devnull@localhost> | 2000-05-17 05:35:18 +0000 |
---|---|---|
committer | msw <devnull@localhost> | 2000-05-17 05:35:18 +0000 |
commit | 3eeb37f5f647dbb6a457086e0476cfc51d303270 (patch) | |
tree | e033bd202117edda2ea37e9c10330682940a1597 /python | |
parent | a71ac24efb57d2fe9c69f41c6ba25d6f5fdaac68 (diff) | |
download | rpm-3eeb37f5f647dbb6a457086e0476cfc51d303270.tar.gz rpm-3eeb37f5f647dbb6a457086e0476cfc51d303270.tar.bz2 rpm-3eeb37f5f647dbb6a457086e0476cfc51d303270.zip |
fixup headers when loading them
CVS patchset: 3737
CVS date: 2000/05/17 05:35:18
Diffstat (limited to 'python')
-rw-r--r-- | python/rpmmodule.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/rpmmodule.c b/python/rpmmodule.c index 8db0d140a..d7238f66d 100644 --- a/python/rpmmodule.c +++ b/python/rpmmodule.c @@ -650,6 +650,8 @@ static PyObject * hdrLoad(PyObject * self, PyObject * args) { PyErr_SetString(pyrpmError, "bad header"); return NULL; } + compressFilelist (hdr); + providePackageNVR (hdr); h = (hdrObject *) PyObject_NEW(PyObject, &hdrType); h->h = hdr; |