diff options
author | Michael Schroeder <mls@suse.de> | 2012-03-02 15:00:47 +0100 |
---|---|---|
committer | Michael Schroeder <mls@suse.de> | 2012-03-02 15:00:47 +0100 |
commit | 9f63ef78d353c21f771726fa2e24ad1622c30671 (patch) | |
tree | 4b2ef8041440fad5999517bdaa855bb5f499704b /tools | |
parent | 6bee613a2725c660ac97f76b867f8fb27cc8a1ef (diff) | |
download | libsolv-9f63ef78d353c21f771726fa2e24ad1622c30671.tar.gz libsolv-9f63ef78d353c21f771726fa2e24ad1622c30671.tar.bz2 libsolv-9f63ef78d353c21f771726fa2e24ad1622c30671.zip |
- add idqinst parameter to pool_addfileprovides_queue so that it can also return the added id list for the installed repo
Diffstat (limited to 'tools')
-rw-r--r-- | tools/common_write.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/common_write.c b/tools/common_write.c index 3ea6a5b..9dcbe75 100644 --- a/tools/common_write.c +++ b/tools/common_write.c @@ -205,7 +205,7 @@ tool_write(Repo *repo, const char *basename, const char *attrname) info = repo_add_repodata(repo, 0); repodata_set_str(info, SOLVID_META, REPOSITORY_TOOLVERSION, LIBSOLV_TOOLVERSION); queue_init(&addedfileprovides); - pool_addfileprovides_queue(repo->pool, &addedfileprovides); + pool_addfileprovides_queue(repo->pool, &addedfileprovides, 0); if (addedfileprovides.count) { kd.haveaddedfileprovides = 1; |