From: Michael Schroeder Date: Mon, 19 Dec 2022 14:51:41 +0000 (+0100) Subject: Fix pool_whatmatchesdep's SOLVABLE_NAME hack X-Git-Tag: 0.7.24~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4717e0bcf71622404e94b1fa425a471ec67564fa;p=thirdparty%2Flibsolv.git Fix pool_whatmatchesdep's SOLVABLE_NAME hack --- diff --git a/src/pool.c b/src/pool.c index 54226e9a..45e85eac 100644 --- a/src/pool.c +++ b/src/pool.c @@ -1461,7 +1461,7 @@ pool_whatmatchesdep(Pool *pool, Id keyname, Id dep, Queue *q, int marker) { Id pp; FOR_PROVIDES(p, pp, dep) - if (pool_match_dep(pool, p, dep)) + if (pool_match_nevr(pool, pool->solvables + p, dep)) queue_push(q, p); return; }