aboutsummaryrefslogtreecommitdiff
path: root/coreutils/uuencode.c
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-03-13 15:45:16 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-03-13 15:45:16 +0000
commit12f32660d14e442e42ed667c106fec3a9db79856 (patch)
treee44405a7e5212758d20a9595cbb0a82609d4a347 /coreutils/uuencode.c
parente02e2f9792dc829c10ca3f18a1fab0294404ffea (diff)
downloadbusybox-w32-12f32660d14e442e42ed667c106fec3a9db79856.tar.gz
busybox-w32-12f32660d14e442e42ed667c106fec3a9db79856.tar.bz2
busybox-w32-12f32660d14e442e42ed667c106fec3a9db79856.zip
Patch from Denis Vlasenko to add xstat() and use it.
git-svn-id: svn://busybox.net/trunk/busybox@14530 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/uuencode.c')
-rw-r--r--coreutils/uuencode.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/coreutils/uuencode.c b/coreutils/uuencode.c
index d45565c6e..6a82a4b43 100644
--- a/coreutils/uuencode.c
+++ b/coreutils/uuencode.c
@@ -105,9 +105,7 @@ int uuencode_main(int argc, char **argv)
105 switch (argc - optind) { 105 switch (argc - optind) {
106 case 2: 106 case 2:
107 src_stream = bb_xfopen(argv[optind], "r"); 107 src_stream = bb_xfopen(argv[optind], "r");
108 if (stat(argv[optind], &stat_buf) < 0) { 108 xstat(argv[optind], &stat_buf);
109 bb_perror_msg_and_die("stat");
110 }
111 mode = stat_buf.st_mode & (S_IRWXU | S_IRWXG | S_IRWXO); 109 mode = stat_buf.st_mode & (S_IRWXU | S_IRWXG | S_IRWXO);
112 if (src_stream == stdout) { 110 if (src_stream == stdout) {
113 puts("NULL"); 111 puts("NULL");