From: Michael Tremer Date: Thu, 29 Apr 2021 10:15:34 +0000 (+0000) Subject: transaction: Change what type we get from libsolv X-Git-Tag: 0.9.28~1285^2~198 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=96c6df88a12d444d45240df8990879e97449bbc4;p=pakfire.git transaction: Change what type we get from libsolv Signed-off-by: Michael Tremer --- diff --git a/src/libpakfire/transaction.c b/src/libpakfire/transaction.c index 3cbab27b5..47ae06a08 100644 --- a/src/libpakfire/transaction.c +++ b/src/libpakfire/transaction.c @@ -50,7 +50,8 @@ struct pakfire_transaction { static pakfire_step_type_t pakfire_transaction_get_step_type( struct pakfire_transaction* transaction, PakfirePackage pkg) { - int type = transaction_type(transaction->transaction, pakfire_package_id(pkg), 0); + int type = transaction_type(transaction->transaction, pakfire_package_id(pkg), + SOLVER_TRANSACTION_SHOW_ACTIVE|SOLVER_TRANSACTION_CHANGE_IS_REINSTALL); // Translate solver types into our own types switch (type) {