diff options
author | Michael Schroeder <mls@suse.de> | 2012-03-14 17:18:42 +0100 |
---|---|---|
committer | Michael Schroeder <mls@suse.de> | 2012-03-14 17:18:42 +0100 |
commit | 706f056ada79f4a5c3855275b3a81a331ce563d9 (patch) | |
tree | 8183bb437f04dbf818d3d0fbbb50e06378075832 /ext | |
parent | c8931f2a9f36cbf9b67c0be62c8c679e04853f32 (diff) | |
download | libsolv-706f056ada79f4a5c3855275b3a81a331ce563d9.tar.gz libsolv-706f056ada79f4a5c3855275b3a81a331ce563d9.tar.bz2 libsolv-706f056ada79f4a5c3855275b3a81a331ce563d9.zip |
- SOLVABLE_DISTRIBUTION is a poolstr everywhere else, make consistent
Diffstat (limited to 'ext')
-rw-r--r-- | ext/repo_content.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/repo_content.c b/ext/repo_content.c index fe9f055..8a4c731 100644 --- a/ext/repo_content.c +++ b/ext/repo_content.c @@ -408,7 +408,7 @@ repo_add_content(Repo *repo, FILE *fp, int flags) else if (istag ("RELEASE")) pd.tmprel = solv_strdup(value); else if (code11 && istag ("DISTRIBUTION")) - repodata_set_str(data, s - pool->solvables, SOLVABLE_DISTRIBUTION, value); + repodata_set_poolstr(data, s - pool->solvables, SOLVABLE_DISTRIBUTION, value); else if (istag ("UPDATEURLS")) add_multiple_urls(data, handle, value, pool_str2id(pool, "update", 1)); else if (istag ("EXTRAURLS")) |