From ff8e519d4b011a6f23c0366d45c396fcd1f9af97 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 7 Jun 2011 13:39:52 -0500 Subject: Require handle for alpm_sync_sysupgrade() Signed-off-by: Dan McGee --- lib/libalpm/sync.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'lib/libalpm/sync.c') diff --git a/lib/libalpm/sync.c b/lib/libalpm/sync.c index 41f9f996..16be6d9a 100644 --- a/lib/libalpm/sync.c +++ b/lib/libalpm/sync.c @@ -50,9 +50,6 @@ #include "diskspace.h" #include "signing.h" -/* global handle variable */ -extern pmhandle_t *handle; - /** Check for new version of pkg in sync repos * (only the first occurrence is considered in sync) */ @@ -85,7 +82,7 @@ pmpkg_t SYMEXPORT *alpm_sync_newversion(pmpkg_t *pkg, alpm_list_t *dbs_sync) } /** Search for packages to upgrade and add them to the transaction. */ -int SYMEXPORT alpm_sync_sysupgrade(int enable_downgrade) +int SYMEXPORT alpm_sync_sysupgrade(pmhandle_t *handle, int enable_downgrade) { alpm_list_t *i, *j, *k; pmtrans_t *trans; -- cgit v1.2.3-24-g4f1b