summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/conflict.c
diff options
context:
space:
mode:
authorChantry Xavier <shiningxc@gmail.com>2008-01-05 10:24:45 +0100
committerDan McGee <dan@archlinux.org>2008-01-05 23:49:09 +0100
commit85a8b150edb7d1fca67f7f0abee3400bd57e7d5a (patch)
tree196ee95be6fc28c85a7ab2f76aa086b019bbc2f3 /lib/libalpm/conflict.c
parent14e4366c781250092a5131b8fbbeda3aab67bd9d (diff)
downloadpacman-85a8b150edb7d1fca67f7f0abee3400bd57e7d5a.tar.gz
pacman-85a8b150edb7d1fca67f7f0abee3400bd57e7d5a.tar.xz
conflict.c : fix for upgrade042.
Thanks to the proactive backup handling, we don't need to add the moving file to the skip_add list. The backup handling will make sure nothing gets overwritten. Ref: http://www.archlinux.org/pipermail/pacman-dev/2007-December/010610.html Signed-off-by: Chantry Xavier <shiningxc@gmail.com> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/conflict.c')
-rw-r--r--lib/libalpm/conflict.c24
1 files changed, 7 insertions, 17 deletions
diff --git a/lib/libalpm/conflict.c b/lib/libalpm/conflict.c
index 38ab9724..adad324f 100644
--- a/lib/libalpm/conflict.c
+++ b/lib/libalpm/conflict.c
@@ -440,23 +440,13 @@ alpm_list_t *_alpm_db_find_fileconflicts(pmdb_t *db, pmtrans_t *trans, char *roo
if(localp2 && !alpm_list_find_str(pkgfiles, filestr)
&& alpm_list_find_str(localfiles, filestr)) {
- /* check if the file is now in the backup array */
- if(alpm_list_find_str(alpm_pkg_get_backup(p1), filestr)) {
- /* keep file intact if it is in backup array */
- trans->skip_add = alpm_list_add(trans->skip_add, strdup(path));
- trans->skip_remove = alpm_list_add(trans->skip_remove, strdup(path));
- _alpm_log(PM_LOG_DEBUG, "file in backup array, adding to add and remove skiplist: %s\n", filestr);
- resolved_conflict = 1;
- break;
- } else {
- /* skip removal of file, but not add. this will prevent a second
- * package from removing the file when it was already installed
- * by its new owner */
- trans->skip_remove = alpm_list_add(trans->skip_remove, strdup(path));
- _alpm_log(PM_LOG_DEBUG, "file changed packages, adding to remove skiplist: %s\n", filestr);
- resolved_conflict = 1;
- break;
- }
+ /* skip removal of file, but not add. this will prevent a second
+ * package from removing the file when it was already installed
+ * by its new owner (whether the file is in backup array or not */
+ trans->skip_remove = alpm_list_add(trans->skip_remove, strdup(path));
+ _alpm_log(PM_LOG_DEBUG, "file changed packages, adding to remove skiplist: %s\n", filestr);
+ resolved_conflict = 1;
+ break;
}
}
if(!resolved_conflict) {