diff options
author | ewt <devnull@localhost> | 1997-01-23 20:24:16 +0000 |
---|---|---|
committer | ewt <devnull@localhost> | 1997-01-23 20:24:16 +0000 |
commit | 167b4407ffe8fd3b3039236b5e897c4eb375fcf9 (patch) | |
tree | 77b7ee8ffa4a44e3b65a1b29be6cf944d348864a /tools/dump.c | |
parent | 5807c0cf2a9c2edf9782dcf9bbf492cd699e7208 (diff) | |
download | rpm-167b4407ffe8fd3b3039236b5e897c4eb375fcf9.tar.gz rpm-167b4407ffe8fd3b3039236b5e897c4eb375fcf9.tar.bz2 rpm-167b4407ffe8fd3b3039236b5e897c4eb375fcf9.zip |
changed for new headerDump()
CVS patchset: 1342
CVS date: 1997/01/23 20:24:16
Diffstat (limited to 'tools/dump.c')
-rw-r--r-- | tools/dump.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/dump.c b/tools/dump.c index b439219ba..7bdef734c 100644 --- a/tools/dump.c +++ b/tools/dump.c @@ -5,6 +5,7 @@ #include <string.h> #include "header.h" +#include "rpmlib.h" void main(int argc, char ** argv) { @@ -29,7 +30,7 @@ void main(int argc, char ** argv) } close(fd); - headerDump(h, stdout, 1); + headerDump(h, stdout, 1, rpmTagTable); headerFree(h); } |