diff options
-rw-r--r-- | archival/libunarchive/data_extract_all.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/libunarchive/data_extract_all.c b/archival/libunarchive/data_extract_all.c index 123d1de74..d79ef7cb9 100644 --- a/archival/libunarchive/data_extract_all.c +++ b/archival/libunarchive/data_extract_all.c | |||
@@ -132,7 +132,7 @@ void FAST_FUNC data_extract_all(archive_handle_t *archive_handle) | |||
132 | #endif | 132 | #endif |
133 | lchown(file_header->name, file_header->uid, file_header->gid); | 133 | lchown(file_header->name, file_header->uid, file_header->gid); |
134 | } | 134 | } |
135 | if (S_ISLNK(file_header->mode)) { | 135 | if (!S_ISLNK(file_header->mode)) { |
136 | /* uclibc has no lchmod, glibc is even stranger - | 136 | /* uclibc has no lchmod, glibc is even stranger - |
137 | * it has lchmod which seems to do nothing! | 137 | * it has lchmod which seems to do nothing! |
138 | * so we use chmod... */ | 138 | * so we use chmod... */ |