diff options
author | Allan McRae <allan@archlinux.org> | 2018-05-29 05:57:13 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2018-08-10 04:38:03 +0200 |
commit | 7d05ffceaf9161a6572505d25b5017e1eb33bf0e (patch) | |
tree | 574de92ad35e6f1b65005327372b1a2a825f3e62 /lib/libalpm/conflict.c | |
parent | e4be26b7327d8378735205ebedfc9718fb6fbba1 (diff) | |
download | pacman-7d05ffceaf9161a6572505d25b5017e1eb33bf0e.tar.gz pacman-7d05ffceaf9161a6572505d25b5017e1eb33bf0e.tar.xz |
Remove the last traces of the pacman --force option
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'lib/libalpm/conflict.c')
-rw-r--r-- | lib/libalpm/conflict.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libalpm/conflict.c b/lib/libalpm/conflict.c index 716d0088..9385be9e 100644 --- a/lib/libalpm/conflict.c +++ b/lib/libalpm/conflict.c @@ -401,8 +401,7 @@ static alpm_pkg_t *_alpm_find_file_owner(alpm_handle_t *handle, const char *path static int _alpm_can_overwrite_file(alpm_handle_t *handle, const char *path, const char *rootedpath) { - return handle->trans->flags & ALPM_TRANS_FLAG_FORCE - || _alpm_fnmatch_patterns(handle->overwrite_files, path) == 0 + return _alpm_fnmatch_patterns(handle->overwrite_files, path) == 0 || _alpm_fnmatch_patterns(handle->overwrite_files, rootedpath) == 0; } |