aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--archival/libunarchive/data_extract_all.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/archival/libunarchive/data_extract_all.c b/archival/libunarchive/data_extract_all.c
index b77cd11ae..4cff24339 100644
--- a/archival/libunarchive/data_extract_all.c
+++ b/archival/libunarchive/data_extract_all.c
@@ -111,8 +111,10 @@ extern void data_extract_all(archive_handle_t *archive_handle)
111 } 111 }
112 } 112 }
113 113
114 chown(file_header->name, file_header->uid, file_header->gid); 114 lchown(file_header->name, file_header->uid, file_header->gid);
115 chmod(file_header->name, file_header->mode); 115 if ((file_header->mode & S_IFMT) != S_IFLNK) {
116 chmod(file_header->name, file_header->mode);
117 }
116 118
117 if (archive_handle->flags & ARCHIVE_PRESERVE_DATE) { 119 if (archive_handle->flags & ARCHIVE_PRESERVE_DATE) {
118 struct utimbuf t; 120 struct utimbuf t;