diff options
author | Michael Schroeder <mls@suse.de> | 2008-02-18 20:03:10 +0000 |
---|---|---|
committer | Michael Schroeder <mls@suse.de> | 2008-02-18 20:03:10 +0000 |
commit | c49cb71a693d3201080c11a558ca74af3d345403 (patch) | |
tree | 2fd69ab7ee6c511719655e4b31d5cd1302149ad6 /tools/dumpsolv.c | |
parent | 535c2802d4684278e00f719c4895bc3f67593f13 (diff) | |
download | libsolv-c49cb71a693d3201080c11a558ca74af3d345403.tar.gz libsolv-c49cb71a693d3201080c11a558ca74af3d345403.tar.bz2 libsolv-c49cb71a693d3201080c11a558ca74af3d345403.zip |
- make rpmdb record summary, description, buildtime, group, dustats
- make rpmdb record the filelist (currently just in parts)
- make filelist a vertical
Diffstat (limited to 'tools/dumpsolv.c')
-rw-r--r-- | tools/dumpsolv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/dumpsolv.c b/tools/dumpsolv.c index f10dc69..d71c6a8 100644 --- a/tools/dumpsolv.c +++ b/tools/dumpsolv.c @@ -103,7 +103,7 @@ dump_repodata (Repo *repo) unsigned int j; printf("%s has %d keys", data->location ? data->location : "**EMBED**", data->nkeys); for (j = 1; j < data->nkeys; j++) - printf("\n %s", id2str(repo->pool, data->keys[j].name)); + printf("\n %s (type %d size %d storage %d)", id2str(repo->pool, data->keys[j].name), data->keys[j].type, data->keys[j].size, data->keys[j].storage); printf("\n"); } printf("\n"); |