From b9762922d1c5ab4022f35033c5efaa013dd2fdbf Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sun, 30 Aug 2009 01:10:17 +0200 Subject: libunarchive: fix a bug where mode and time is no longer restored Introduced by me in 1.15.x. Found by Rob Landley. Signed-off-by: Denys Vlasenko --- archival/libunarchive/data_extract_all.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) #endif lchown(file_header->name, file_header->uid, file_header->gid); } - if (S_ISLNK(file_header->mode)) { + if (!S_ISLNK(file_header->mode)) { /* uclibc has no lchmod, glibc is even stranger - * it has lchmod which seems to do nothing! * so we use chmod... */ -- cgit v1.2.3