From: Michael Schroeder Date: Mon, 7 Jan 2019 13:45:45 +0000 (+0100) Subject: Change pool_str2id calls to use "1" instead of "9" X-Git-Tag: 0.7.3~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52fd2115459040cbe8e5b345922d3adaf4937393;p=thirdparty%2Flibsolv.git Change pool_str2id calls to use "1" instead of "9" --- diff --git a/ext/repo_autopattern.c b/ext/repo_autopattern.c index 4c09e796..bbc90cbf 100644 --- a/ext/repo_autopattern.c +++ b/ext/repo_autopattern.c @@ -131,8 +131,8 @@ repo_add_autopattern(Repo *repo, int flags) if (repo == pool->installed) flags |= ADD_NO_AUTOPRODUCTS; /* no auto products for installed repos */ - pattern_id = pool_str2id(pool, "pattern()", 9); - product_id = pool_str2id(pool, "product()", 9); + pattern_id = pool_str2id(pool, "pattern()", 1); + product_id = pool_str2id(pool, "product()", 1); queue_init(&categorykeys); FOR_REPO_SOLVABLES(repo, p, s)