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 --- lib/libalpm/db.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'lib/libalpm/db.c') diff --git a/lib/libalpm/db.c b/lib/libalpm/db.c index 61143349..8156f2ac 100644 --- a/lib/libalpm/db.c +++ b/lib/libalpm/db.c @@ -39,16 +39,13 @@ #include "package.h" #include "group.h" -/* global handle variable */ -extern pmhandle_t *handle; - /** \addtogroup alpm_databases Database Functions * @brief Functions to query and manipulate the database of libalpm * @{ */ /** Register a sync database of packages. */ -pmdb_t SYMEXPORT *alpm_db_register_sync(const char *treename) +pmdb_t SYMEXPORT *alpm_db_register_sync(pmhandle_t *handle, const char *treename) { /* Sanity checks */ ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, NULL)); -- cgit v1.2.3-24-g4f1b