diff options
-rw-r--r-- | src/xz/io.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xz/io.c b/src/xz/io.c index 49d3d8bc..2a4c6e9a 100644 --- a/src/xz/io.c +++ b/src/xz/io.c @@ -180,7 +180,7 @@ io_copy_attrs(const file_pair *pair) (void)futimesat(pair->dest_fd, NULL, tv); # else // Argh, no function to use a file descriptor to set the timestamp. - (void)utimes(pair->src_name, tv); + (void)utimes(pair->dest_name, tv); # endif #elif defined(HAVE_UTIME) @@ -195,7 +195,7 @@ io_copy_attrs(const file_pair *pair) (void)atime_nsec; (void)mtime_nsec; - (void)utime(pair->src_name, &buf); + (void)utime(pair->dest_name, &buf); #endif return; |