diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-12 17:57:19 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-12 17:57:19 +0200 |
commit | d7686c8c2c849c775007c5de19901ab6b38bd039 (patch) | |
tree | 8d4017407166a4f16a0fecd7921a8d03975636bf /archival/libunarchive/data_extract_all.c | |
parent | e7aa0d9eca180f77ed4226ecaa1e8961d842add7 (diff) | |
download | busybox-w32-1_15_1.tar.gz busybox-w32-1_15_1.tar.bz2 busybox-w32-1_15_1.zip |
Apply post-1.15.0 fixes; bump version to 1.15.11_15_1
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to '')
-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... */ |