aboutsummaryrefslogtreecommitdiff
path: root/archival
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-03-13 15:45:16 +0000
committerRob Landley <rob@landley.net>2006-03-13 15:45:16 +0000
commitc5b1d4d6b14f22b5e2f7ae42eb01bf2746b8001c (patch)
treee44405a7e5212758d20a9595cbb0a82609d4a347 /archival
parent965030e35aed6a8b9c09267baba4c2342d5223d6 (diff)
downloadbusybox-w32-c5b1d4d6b14f22b5e2f7ae42eb01bf2746b8001c.tar.gz
busybox-w32-c5b1d4d6b14f22b5e2f7ae42eb01bf2746b8001c.tar.bz2
busybox-w32-c5b1d4d6b14f22b5e2f7ae42eb01bf2746b8001c.zip
Patch from Denis Vlasenko to add xstat() and use it.
Diffstat (limited to 'archival')
-rw-r--r--archival/gunzip.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/archival/gunzip.c b/archival/gunzip.c
index 4fb77044a..7b939290b 100644
--- a/archival/gunzip.c
+++ b/archival/gunzip.c
@@ -103,9 +103,7 @@ int gunzip_main(int argc, char **argv)
103 src_fd = bb_xopen(old_path, O_RDONLY); 103 src_fd = bb_xopen(old_path, O_RDONLY);
104 104
105 /* Get the time stamp on the input file. */ 105 /* Get the time stamp on the input file. */
106 if (stat(old_path, &stat_buf) < 0) { 106 xstat(old_path, &stat_buf);
107 bb_error_msg_and_die("Couldn't stat file %s", old_path);
108 }
109 } 107 }
110 108
111 /* Check that the input is sane. */ 109 /* Check that the input is sane. */