X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;ds=inline;f=src%2Fcreate.c;h=1b84fc860557bd7fee61e0888ccf98381485fdd3;hb=ac40b1e6f6d0760ed656f7706c326de4ee68e149;hp=4f623ac1bb0b4e6ad77aaa4a0c3e369f20b88283;hpb=29fb7356dfd1b88dcb4977c67b418004b11b6533;p=chaz%2Ftar diff --git a/src/create.c b/src/create.c index 4f623ac..1b84fc8 100644 --- a/src/create.c +++ b/src/create.c @@ -380,7 +380,7 @@ bool file_dumpable_p (struct tar_stat_info *st) { if (dev_null_output) - return totals_option && sparse_option && sparse_file_p (st); + return totals_option && sparse_option && ST_IS_SPARSE (st->stat); return !(st->archive_file_size == 0 && (st->stat.st_mode & MODE_R) == MODE_R); } @@ -730,7 +730,7 @@ start_header (struct tar_stat_info *st) } { - struct timespec mtime = st->mtime; + struct timespec mtime = set_mtime_option ? mtime_option : st->mtime; if (archive_format == POSIX_FORMAT) { if (MAX_OCTAL_VAL (header->header.mtime) < mtime.tv_sec @@ -1499,7 +1499,7 @@ dump_file0 (struct tar_stat_info *st, const char *p, { enum dump_status status; - if (fd != -1 && sparse_option && sparse_file_p (st)) + if (fd != -1 && sparse_option && ST_IS_SPARSE (st->stat)) { status = sparse_dump_file (fd, st); if (status == dump_status_not_implemented)