From 35e23b9554b6438bd42a873e7f47ae16116e3f06 Mon Sep 17 00:00:00 2001 From: Aurelien Foret Date: Sun, 5 Feb 2006 09:23:28 +0000 Subject: code cleanup --- lib/libalpm/remove.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/libalpm/remove.c b/lib/libalpm/remove.c index 898969ee..30f160de 100644 --- a/lib/libalpm/remove.c +++ b/lib/libalpm/remove.c @@ -168,14 +168,14 @@ int remove_commit(pmtrans_t *trans, pmdb_t *db) for(lp = _alpm_list_last(info->files); lp; lp = lp->prev) { int nb = 0; char *file = lp->data; - char *md5 = _alpm_needbackup(lp->data, info->backup); + char *md5 = _alpm_needbackup(file, info->backup); if(md5) { nb = 1; free(md5); } if(!nb && trans->type == PM_TRANS_TYPE_UPGRADE) { /* check noupgrade */ - if(pm_list_is_strin(lp->data, handle->noupgrade)) { + if(pm_list_is_strin(file, handle->noupgrade)) { nb = 1; } } -- cgit v1.2.3-54-g00ecf