Blame SOURCES/35.patch

5c5e8c
From 71ef959bb3bb8340ef142e2a10552dd4f38862ae Mon Sep 17 00:00:00 2001
5c5e8c
From: Jaroslav Mracek <jmracek@redhat.com>
5c5e8c
Date: Tue, 12 Jun 2018 09:12:45 +0200
5c5e8c
Subject: [PATCH] Remove call of dnf_context_set_yumdb_enabled
5c5e8c
5c5e8c
The function was removed from libdnf-0.14.0 without replacement. There is no
5c5e8c
yumdb support anymore. Information is stored in sqlight database.
5c5e8c
---
5c5e8c
 dnf/dnf-main.c | 1 -
5c5e8c
 1 file changed, 1 deletion(-)
5c5e8c
5c5e8c
diff --git a/dnf/dnf-main.c b/dnf/dnf-main.c
5c5e8c
index 09454e0..ef5a04e 100644
5c5e8c
--- a/dnf/dnf-main.c
5c5e8c
+++ b/dnf/dnf-main.c
5c5e8c
@@ -100,7 +100,6 @@ context_new (void)
5c5e8c
   dnf_context_set_check_transaction (ctx, TRUE);
5c5e8c
   dnf_context_set_keep_cache (ctx, FALSE);
5c5e8c
   dnf_context_set_cache_age (ctx, 0);
5c5e8c
-  dnf_context_set_yumdb_enabled (ctx, FALSE);
5c5e8c
 
5c5e8c
   return ctx;
5c5e8c
 }