From 7d27cf8364b9c5d9a8d89017173f8c88d40cedd5 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 7 Jun 2011 13:34:30 -0500 Subject: Require handle for alpm_db_register_sync() Signed-off-by: Dan McGee --- src/pacman/conf.c | 2 +- src/util/cleanupdelta.c | 2 +- src/util/testdb.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/pacman/conf.c b/src/pacman/conf.c index c52c6044..1ee0444d 100644 --- a/src/pacman/conf.c +++ b/src/pacman/conf.c @@ -564,7 +564,7 @@ static int _parseconfig(const char *file, int parse_options, pm_printf(PM_LOG_DEBUG, "config: new section '%s'\n", name); /* if we are not looking at the options section, register a db */ if(!parse_options && strcmp(name, "options") != 0) { - db = alpm_db_register_sync(name); + db = alpm_db_register_sync(config->handle, name); if(db == NULL) { pm_printf(PM_LOG_ERROR, _("could not register '%s' database (%s)\n"), name, alpm_strerrorlast()); diff --git a/src/util/cleanupdelta.c b/src/util/cleanupdelta.c index 83659cd5..5112b1a8 100644 --- a/src/util/cleanupdelta.c +++ b/src/util/cleanupdelta.c @@ -75,7 +75,7 @@ static void checkdbs(const char *dbpath, alpm_list_t *dbnames) { for(i = dbnames; i; i = alpm_list_next(i)) { char *dbname = alpm_list_getdata(i); snprintf(syncdbpath, PATH_MAX, "%s/sync/%s", dbpath, dbname); - db = alpm_db_register_sync(dbname); + db = alpm_db_register_sync(handle, dbname); if(db == NULL) { fprintf(stderr, "error: could not register sync database (%s)\n", alpm_strerrorlast()); diff --git a/src/util/testdb.c b/src/util/testdb.c index c7640d91..620328e2 100644 --- a/src/util/testdb.c +++ b/src/util/testdb.c @@ -152,7 +152,7 @@ static int check_syncdbs(alpm_list_t *dbnames) { for(i = dbnames; i; i = alpm_list_next(i)) { char *dbname = alpm_list_getdata(i); - db = alpm_db_register_sync(dbname); + db = alpm_db_register_sync(handle, dbname); if(db == NULL) { fprintf(stderr, "error: could not register sync database (%s)\n", alpm_strerrorlast()); -- cgit v1.2.3-24-g4f1b