From 77c3cf9790472592902183354ea5481cffc01f58 Mon Sep 17 00:00:00 2001 From: Nagy Gabor Date: Wed, 30 Jan 2008 13:55:49 +0100 Subject: Remove alpm_sync_get_newversion function sync->newversion shouldn't be public at all, and internally we access it directly. (Before pmsyncpkg_t clean-up the analogue of this field [type] was needed in replaces computation.) Signed-off-by: Nagy Gabor Signed-off-by: Chantry Xavier --- lib/libalpm/sync.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'lib/libalpm/sync.c') diff --git a/lib/libalpm/sync.c b/lib/libalpm/sync.c index fb928ad9..41011583 100644 --- a/lib/libalpm/sync.c +++ b/lib/libalpm/sync.c @@ -1182,14 +1182,6 @@ pmsyncpkg_t *_alpm_sync_find(alpm_list_t *syncpkgs, const char* pkgname) return(NULL); /* not found */ } -pmpkgreason_t SYMEXPORT alpm_sync_get_newreason(const pmsyncpkg_t *sync) -{ - /* Sanity checks */ - ASSERT(sync != NULL, return(-1)); - - return sync->newreason; -} - pmpkg_t SYMEXPORT *alpm_sync_get_pkg(const pmsyncpkg_t *sync) { /* Sanity checks */ -- cgit v1.2.3-24-g4f1b