From: Michael Schroeder Date: Fri, 5 Jun 2009 16:47:11 +0000 (+0200) Subject: - added missing dbenv to db_create call X-Git-Tag: BASE-SuSE-Code-12_1-Branch~268 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=93ed9cc41fadfd5eeb1928e9028f5f2f600fb752;p=thirdparty%2Flibsolv.git - added missing dbenv to db_create call --- diff --git a/tools/repo_rpmdb.c b/tools/repo_rpmdb.c index 657daa36..bdd58d27 100644 --- a/tools/repo_rpmdb.c +++ b/tools/repo_rpmdb.c @@ -1543,7 +1543,7 @@ repo_add_rpmdb(Repo *repo, Repo *ref, const char *rootdir, int flags) } if (!db) { - if (db_create(&db, 0, 0)) + if (db_create(&db, dbenv, 0)) { perror("db_create"); exit(1);