aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/date.c3
-rw-r--r--coreutils/ls.c2
-rw-r--r--coreutils/uuencode.c4
3 files changed, 3 insertions, 6 deletions
diff --git a/coreutils/date.c b/coreutils/date.c
index c111b6161..401d2ffb7 100644
--- a/coreutils/date.c
+++ b/coreutils/date.c
@@ -165,8 +165,7 @@ int date_main(int argc, char **argv)
165 165
166 if(filename) { 166 if(filename) {
167 struct stat statbuf; 167 struct stat statbuf;
168 if(stat(filename,&statbuf)) 168 xstat(filename,&statbuf);
169 bb_perror_msg_and_die("File '%s' not found.", filename);
170 tm=statbuf.st_mtime; 169 tm=statbuf.st_mtime;
171 } else time(&tm); 170 } else time(&tm);
172 memcpy(&tm_time, localtime(&tm), sizeof(tm_time)); 171 memcpy(&tm_time, localtime(&tm), sizeof(tm_time));
diff --git a/coreutils/ls.c b/coreutils/ls.c
index a575a02cb..964e7c964 100644
--- a/coreutils/ls.c
+++ b/coreutils/ls.c
@@ -230,7 +230,7 @@ static struct dnode *my_stat(char *fullname, char *name)
230 rc = getfilecon(fullname,&sid); 230 rc = getfilecon(fullname,&sid);
231 } 231 }
232#endif 232#endif
233 rc = stat(fullname, &dstat); 233 rc = stat(fullname, &dstat);
234 if(rc) { 234 if(rc) {
235 bb_perror_msg("%s", fullname); 235 bb_perror_msg("%s", fullname);
236 status = EXIT_FAILURE; 236 status = EXIT_FAILURE;
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");