From c4b673994e5e6f358b80fa3eef89e1cc26f60cee Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 13 Jun 2006 16:09:16 +0000 Subject: Use xstat() instead of if(stat()) die() --- archival/uncompress.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'archival/uncompress.c') diff --git a/archival/uncompress.c b/archival/uncompress.c index c47436e..b282fe8 100644 --- a/archival/uncompress.c +++ b/archival/uncompress.c @@ -61,11 +61,9 @@ int uncompress_main(int argc, char **argv) *extension = '\0'; /* Open output file */ - dst_fd = bb_xopen(uncompressed_file, O_WRONLY | O_CREAT); - - /* Set permissions on the file */ - stat(compressed_file, &stat_buf); - chmod(uncompressed_file, stat_buf.st_mode); + xstat(compressed_file, &stat_buf); + dst_fd = bb_xopen3(uncompressed_file, O_WRONLY | O_CREAT, + stat_buf.st_mode); /* If unzip succeeds remove the old file */ delete_path = compressed_file; -- cgit v1.1