summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/add.c
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-02-22 23:48:51 +0100
committerDan McGee <dan@archlinux.org>2011-02-22 23:48:51 +0100
commit6735807c0f5ec5464f2977da96b8981e2321940a (patch)
tree331511e9b58340bcaef817e307d6185e9f1b9a33 /lib/libalpm/add.c
parentcfa760203295e99f65234896036f854b5047c90e (diff)
downloadpacman-6735807c0f5ec5464f2977da96b8981e2321940a.tar.gz
pacman-6735807c0f5ec5464f2977da96b8981e2321940a.tar.xz
Remove trans->skip_add
This is old code that has since gone stale; we no longer ever add anything to this list so no need to keep it around and check the contents during extraction. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/add.c')
-rw-r--r--lib/libalpm/add.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/libalpm/add.c b/lib/libalpm/add.c
index 2cfa23b4..702b12e9 100644
--- a/lib/libalpm/add.c
+++ b/lib/libalpm/add.c
@@ -185,14 +185,6 @@ static int extract_single_file(struct archive *archive,
return(0);
}
- /* if a file is in the add skiplist we never extract it */
- if(alpm_list_find_str(trans->skip_add, filename)) {
- _alpm_log(PM_LOG_DEBUG, "%s is in trans->skip_add, skipping extraction\n",
- entryname);
- archive_read_data_skip(archive);
- return(0);
- }
-
/* Check for file existence. This is one of the more crucial parts
* to get 'right'. Here are the possibilities, with the filesystem
* on the left and the package on the top: