From d18686a5637c50a8229a0a280f81a1eb9ec34ed0 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 1 Jan 2008 19:12:09 -0600 Subject: Switch pkg_new -> pkg_dup in find_replacements Ugh, it was a pain to figure out why the Total Removed Size was showing up wrong in the output of removed packages, but this was why- we used a stupid _alpm_pkg_new call instead of just duping the package. Fix this. In the long run, we really need to figure out better ways to not duplicate all this package information. Signed-off-by: Dan McGee --- lib/libalpm/sync.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libalpm/sync.c b/lib/libalpm/sync.c index 22df9bf5..224f5676 100644 --- a/lib/libalpm/sync.c +++ b/lib/libalpm/sync.c @@ -147,7 +147,7 @@ static int find_replacements(pmtrans_t *trans, pmdb_t *db_local, * the package to replace. */ pmsyncpkg_t *sync; - pmpkg_t *dummy = _alpm_pkg_new(alpm_pkg_get_name(lpkg), NULL); + pmpkg_t *dummy = _alpm_pkg_dup(lpkg); if(dummy == NULL) { pm_errno = PM_ERR_MEMORY; synclist_free(*syncpkgs); -- cgit v1.2.3-24-g4f1b