aboutsummaryrefslogtreecommitdiff
path: root/coreutils/date.c
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 /coreutils/date.c
parent965030e35aed6a8b9c09267baba4c2342d5223d6 (diff)
downloadbusybox-c5b1d4d6b14f22b5e2f7ae42eb01bf2746b8001c.tar.gz
Patch from Denis Vlasenko to add xstat() and use it.
Diffstat (limited to 'coreutils/date.c')
-rw-r--r--coreutils/date.c3
1 files changed, 1 insertions, 2 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)
if(filename) {
struct stat statbuf;
- if(stat(filename,&statbuf))
- bb_perror_msg_and_die("File '%s' not found.", filename);
+ xstat(filename,&statbuf);
tm=statbuf.st_mtime;
} else time(&tm);
memcpy(&tm_time, localtime(&tm), sizeof(tm_time));