wok-stable diff busybox/stuff/busybox-1.10.0-cpio-mkdir.u @ rev 1346

Upd: File to 4.26
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu Sep 04 21:47:58 2008 +0200 (2008-09-04)
parents b796e9417abb
children
line diff
     1.1 --- a/busybox/stuff/busybox-1.10.0-cpio-mkdir.u	Sat Apr 12 12:36:17 2008 +0200
     1.2 +++ b/busybox/stuff/busybox-1.10.0-cpio-mkdir.u	Thu Sep 04 21:47:58 2008 +0200
     1.3 @@ -1,6 +1,16 @@
     1.4  --- busybox-1.10.0/archival/libunarchive/data_extract_all.c
     1.5  +++ busybox-1.10.0/archival/libunarchive/data_extract_all.c
     1.6 -@@ -77,7 +77,7 @@
     1.7 +@@ -38,7 +38,8 @@
     1.8 + 			}
     1.9 + 		}
    1.10 + 		else if (statbuf.st_mtime <= file_header->mtime) {
    1.11 +-			if (!(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) {
    1.12 ++			if (!(archive_handle->flags & ARCHIVE_EXTRACT_QUIET) &&
    1.13 ++				(file_header->mode & S_IFMT) != S_IFDIR) {
    1.14 + 				bb_error_msg("%s not created: newer or "
    1.15 + 					"same age file exists", file_header->name);
    1.16 + 			}
    1.17 +@@ -77,7 +78,7 @@
    1.18   		}
    1.19   		case S_IFDIR:
    1.20   			res = mkdir(file_header->name, file_header->mode);