diff options
author | Michael Schroeder <mls@suse.de> | 2008-10-09 13:24:21 +0000 |
---|---|---|
committer | Michael Schroeder <mls@suse.de> | 2008-10-09 13:24:21 +0000 |
commit | 2da1ef79fdc2918c88a63fc5d466a6c9bfb5d822 (patch) | |
tree | 164d7b7f0ce33b83984cc59c88ff82bda636f003 /tools/dumpsolv.c | |
parent | 862fac73a3383ad4032239766d69f3dca3447db4 (diff) | |
download | libsolv-2da1ef79fdc2918c88a63fc5d466a6c9bfb5d822.tar.gz libsolv-2da1ef79fdc2918c88a63fc5d466a6c9bfb5d822.tar.bz2 libsolv-2da1ef79fdc2918c88a63fc5d466a6c9bfb5d822.zip |
- kill SEARCH_EXTRA so we see where libzypp has to be changed
Diffstat (limited to 'tools/dumpsolv.c')
-rw-r--r-- | tools/dumpsolv.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/dumpsolv.c b/tools/dumpsolv.c index 9ae443d..a5314f3 100644 --- a/tools/dumpsolv.c +++ b/tools/dumpsolv.c @@ -300,7 +300,7 @@ int main(int argc, char **argv) repo = pool->repos[j]; dump_repodata(repo); - printf("repo %d contains %d solvables %d non-solvables\n", j, repo->nsolvables, repo->nextra); + printf("repo %d contains %d solvables\n", j, repo->nsolvables); printf("repo start: %d end: %d\n", repo->start, repo->end); for (i = repo->start, n = 1; i < repo->end; i++) { @@ -332,6 +332,7 @@ int main(int argc, char **argv) #endif n++; } +#if 0 for (i = 0; i < repo->nextra; i++) { printf("\nextra %d:\n", i); @@ -340,6 +341,7 @@ int main(int argc, char **argv) while (dataiterator_step(&di)) dump_attr(repo, di.data, di.key, &di.kv); } +#endif #if 0 tryme(repo, 0, SOLVABLE_MEDIANR, 0, 0); printf("\n"); |